From: Michael Meissner Date: Thu, 4 Sep 1997 17:06:34 +0000 (+0000) Subject: Add free declaration X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1cfabc1344b8ecb61007e24ca713eca9aedd529e;p=gcc.git Add free declaration From-SVN: r15078 --- diff --git a/gcc/bitmap.c b/gcc/bitmap.c index e2d61cd856f..58566854a21 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -26,6 +26,14 @@ Boston, MA 02111-1307, USA. */ #include "regs.h" #include "basic-block.h" +#ifdef HAVE_STDLIB_H +#include +#endif + +#ifdef NEED_DECLARATION_FREE +extern void free PROTO((void *)); +#endif + /* Obstack to allocate bitmap elements from. */ static struct obstack bitmap_obstack; static int bitmap_obstack_init = FALSE;