Bugzilla bug #27175: Changed the PRFuncPtr type to void (*)(), to be

consistent with the type of the 'fp' field of PRStaticLinkTable.
This commit is contained in:
wtc%netscape.com 2000-03-30 00:54:33 +00:00
Родитель 5b07935fe7
Коммит 9a132c7558
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -182,7 +182,7 @@ NSPR_API(void*) PR_FindSymbol(PRLibrary *lib, const char *name);
**
** This function does not modify the reference count of the library.
*/
typedef void (*PRFuncPtr)(void);
typedef void (*PRFuncPtr)();
NSPR_API(PRFuncPtr) PR_FindFunctionSymbol(PRLibrary *lib, const char *name);
/*