Bugzilla bug 97485: added a stub for pr_FindSymbolInProg for Darwin.

This commit is contained in:
wtc%netscape.com 2002-02-18 23:45:10 +00:00
Родитель f2dabe8b2c
Коммит aeb57f3f9d
1 изменённых файлов: 9 добавлений и 0 удалений

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

@ -145,6 +145,15 @@ pr_FindSymbolInProg(const char *name)
return sym;
}
#elif defined(USE_MACH_DYLD)
static void *
pr_FindSymbolInProg(const char *name)
{
/* FIXME: not implemented */
return NULL;
}
#else
#error "The zone allocator is not supported on this platform"