Add free declaration
authorMichael Meissner <meissner@gcc.gnu.org>
Thu, 4 Sep 1997 17:06:34 +0000 (17:06 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Thu, 4 Sep 1997 17:06:34 +0000 (17:06 +0000)
From-SVN: r15078

gcc/bitmap.c

index e2d61cd856f14ab1b03979323e099d0163dc3bbe..58566854a210cfa788779d73a36fd533507ea2d5 100644 (file)
@@ -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;