X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fmm%2Fboehm-gc%2Freal_malloc.c;h=da11f342bbd3834d52ce9f85c32468c968728b07;hb=c9ee016a64e925938f84fcb85521f82febcc4f63;hp=c5c4628519535310980b425460a9c534fd2271b0;hpb=7cdbbe3be2b5834a248a600176c742bd94aaf730;p=cacao.git diff --git a/src/mm/boehm-gc/real_malloc.c b/src/mm/boehm-gc/real_malloc.c index c5c462851..da11f342b 100644 --- a/src/mm/boehm-gc/real_malloc.c +++ b/src/mm/boehm-gc/real_malloc.c @@ -1,4 +1,4 @@ -/* +/* * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved. * @@ -11,9 +11,10 @@ * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. */ -/* Boehm, May 19, 1994 2:04 pm PDT */ -#include "config.h" +# ifdef HAVE_CONFIG_H +# include "private/config.h" +# endif # ifdef PCR /* @@ -28,5 +29,11 @@ void * real_malloc(size_t size) { return(malloc(size)); } -#endif /* PCR */ +# else + +extern int GC_quiet; + /* ANSI C doesn't allow translation units to be empty. */ + /* So we guarantee this one is nonempty. */ + +#endif /* PCR */