diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1997-09-04 17:06:34 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1997-09-04 17:06:34 +0000 |
commit | 1cfabc1344b8ecb61007e24ca713eca9aedd529e (patch) | |
tree | 803eabbe7b9113bf3ef9f7afe46e6271e96f9cf1 /gcc/bitmap.c | |
parent | 02d7a56981399318871606174f8638873426b986 (diff) | |
download | gcc-1cfabc1344b8ecb61007e24ca713eca9aedd529e.tar.gz |
Add free declaration
From-SVN: r15078
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 8 |
1 files changed, 8 insertions, 0 deletions
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 <stdlib.h> +#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; |