More build bustage fixes.

git-svn-id: svn://10.0.0.236/trunk@15483 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com 1998-12-01 01:06:33 +00:00
parent a042fb01d9
commit 4be58ddc21
2 changed files with 4 additions and 5 deletions

View File

@ -819,7 +819,7 @@ FE_SetTimeout(TimeoutCallbackFunction func, void * closure, uint32 msecs)
closure, msecs);
}
NS_EXPORT(void)
NS_EXPORT void
FE_ClearTimeout(void *timer_id)
{
il_ss->ClearTimeout(timer_id);

View File

@ -30,6 +30,7 @@
#include "platform.h"
#include "prtypes.h"
#include "nsCom.h"
/*
* This will probably go away after we stop using 16-bit compilers
@ -149,11 +150,9 @@ extern char * NET_BACat (char **dest, size_t dest_length, const char *src, size
extern char * NET_SACopy (char **dest, const char *src);
extern char * NET_SACat (char **dest, const char *src);
extern NS_EXPORT_(void *)
FE_SetTimeout(TimeoutCallbackFunction func, void * closure, uint32 msecs);
NS_EXPORT void* FE_SetTimeout(TimeoutCallbackFunction func, void * closure, uint32 msecs);
extern NS_EXPORT(void)
FE_ClearTimeout(void *timer_id);
NS_EXPORT void FE_ClearTimeout(void *timer_id);
PR_END_EXTERN_C