Fixed the problem with segfaults - actually a bug/limitation in
[ocaml-ancient.git] / mmalloc / mvalloc.c
index e44942f..035a336 100644 (file)
@@ -42,9 +42,13 @@ mvalloc (md, size)
 }
 
 
+#if 0 // RWMJ
+
 PTR
 valloc (size)
   size_t size;
 {
   return mvalloc ((PTR) NULL, size);
 }
+
+#endif