Added:
[ocaml-ancient.git] / mmalloc / mrealloc.c
index e2004aa..2884760 100644 (file)
@@ -145,6 +145,8 @@ mrealloc (md, ptr, 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
@@ -161,3 +163,5 @@ realloc (ptr, size)
   result = mrealloc ((PTR) NULL, ptr, size);
   return (result);
 }
+
+#endif