diff --git a/nsprpub/pr/src/malloc/prmem.c b/nsprpub/pr/src/malloc/prmem.c index cf59bda9162f..20cf7e99ccb7 100644 --- a/nsprpub/pr/src/malloc/prmem.c +++ b/nsprpub/pr/src/malloc/prmem.c @@ -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"