projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02d7a56
)
Add free declaration
author
Michael Meissner
<meissner@gcc.gnu.org>
Thu, 4 Sep 1997 17:06:34 +0000
(17:06 +0000)
committer
Michael Meissner
<meissner@gcc.gnu.org>
Thu, 4 Sep 1997 17:06:34 +0000
(17:06 +0000)
From-SVN: r15078
gcc/bitmap.c
patch
|
blob
|
history
diff --git
a/gcc/bitmap.c
b/gcc/bitmap.c
index e2d61cd856f14ab1b03979323e099d0163dc3bbe..58566854a210cfa788779d73a36fd533507ea2d5 100644
(file)
--- 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;