Fixed the problem with segfaults - actually a bug/limitation in
[ocaml-ancient.git] / mmalloc / mcalloc.c
index c9fcc07..83f5029 100644 (file)
@@ -39,6 +39,8 @@ mcalloc (md, nmemb, 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
@@ -52,3 +54,5 @@ calloc (nmemb, size)
 {
   return (mcalloc ((PTR) NULL, nmemb, size));
 }
+
+#endif