fixing hp-ux tinderbox orange and aix build bustage

when functions are defined they shouldn't be defined extern
and when declaring externs, they should be declared globably

r=bnesse@netscape.com
sr=alecf@netscape.com
# 113319
This commit is contained in:
jdunn%netscape.com 2001-12-03 23:04:29 +00:00
Родитель 3b010bd783
Коммит 6fc5642c87
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -780,7 +780,7 @@ extern "C" JSBool pref_InitInitialObjects()
}
extern JSRuntime* PREF_GetJSRuntime()
JSRuntime* PREF_GetJSRuntime()
{
nsresult rv;

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

@ -70,6 +70,8 @@
#include <os2.h>
#endif
extern JSRuntime* PREF_GetJSRuntime();
#define BOGUS_DEFAULT_INT_PREF_VALUE (-5632)
#define BOGUS_DEFAULT_BOOL_PREF_VALUE (-2)
@ -290,7 +292,6 @@ PRBool pref_VerifyLockFile(char* buf, long buflen)
PRBool PREF_Init(const char *filename)
{
PRBool ok = PR_TRUE, request = PR_FALSE;
extern JSRuntime* PREF_GetJSRuntime(void);
/* --ML hash test */
if (!gHashTable)
@ -421,7 +422,6 @@ void PREF_CleanupPrefs()
gMochaTaskState = NULL; /* We -don't- destroy this. */
if (gMochaContext) {
extern JSRuntime* PREF_GetJSRuntime(void);
JSRuntime *rt;
gMochaPrefObject = NULL;