X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fmm%2Fboehm-gc%2Freal_malloc.c;h=01be5f0fbb74fdc72b352888d42a5a109b05aa09;hb=c83bff94e40ee0a218a39931af17814d1a42cb5c;hp=c5c4628519535310980b425460a9c534fd2271b0;hpb=10ed66b9005e551f0d9af18b858a9259a3057e4c;p=cacao.git diff --git a/src/mm/boehm-gc/real_malloc.c b/src/mm/boehm-gc/real_malloc.c index c5c462851..01be5f0fb 100644 --- a/src/mm/boehm-gc/real_malloc.c +++ b/src/mm/boehm-gc/real_malloc.c @@ -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 */