boehm-gc: revert all CACAO-specific modifications; this is now an exact copy of the...
[cacao.git] / src / mm / boehm-gc / real_malloc.c
index c5c4628519535310980b425460a9c534fd2271b0..01be5f0fbb74fdc72b352888d42a5a109b05aa09 100644 (file)
@@ -13,7 +13,6 @@
  */
 /* Boehm, May 19, 1994 2:04 pm PDT */
 
-#include "config.h"
 
 # ifdef PCR
 /*
@@ -28,5 +27,12 @@ void * real_malloc(size_t size)
 {
     return(malloc(size));
 }
+
+# else
+
+extern int GC_quiet;
+       /* ANSI C doesn't allow translation units to be empty.  */
+       /* So we guarantee this one is nonempty.                */
+
 #endif /* PCR */