Added:
[ocaml-ancient.git] / mmalloc / mmalloc.c
index 7c60fe2..bc10e3a 100644 (file)
@@ -320,6 +320,8 @@ mmalloc (md, size)
   return (result);
 }
 
+#if 0 // RWMJ
+
 /* When using this package, provide a version of malloc/realloc/free built
    on top of it, so that if we use the default sbrk() region we will not
    collide with another malloc package trying to do the same thing, if
@@ -335,3 +337,5 @@ malloc (size)
   result = mmalloc ((PTR) NULL, size);
   return (result);
 }
+
+#endif