summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pr/src/malloc/prmem.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/pr/src/malloc/prmem.c b/pr/src/malloc/prmem.c
index cf59bda9..20cf7e99 100644
--- a/pr/src/malloc/prmem.c
+++ b/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"