aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.c
diff options
context:
space:
mode:
authorMichael Meissner <meissner@gcc.gnu.org>1997-09-04 17:06:34 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1997-09-04 17:06:34 +0000
commit1cfabc1344b8ecb61007e24ca713eca9aedd529e (patch)
tree803eabbe7b9113bf3ef9f7afe46e6271e96f9cf1 /gcc/bitmap.c
parent02d7a56981399318871606174f8638873426b986 (diff)
downloadgcc-1cfabc1344b8ecb61007e24ca713eca9aedd529e.zip
gcc-1cfabc1344b8ecb61007e24ca713eca9aedd529e.tar.gz
gcc-1cfabc1344b8ecb61007e24ca713eca9aedd529e.tar.bz2
Add free declaration
From-SVN: r15078
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r--gcc/bitmap.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index e2d61cd..5856685 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;