From 2601ebca412b05d466bccccd2c4a74e1cec60c05 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Thu, 28 Aug 1997 13:08:54 +0000 Subject: version.c: Bump for latest snapshot. * version.c: Bump for latest snapshot. * bc-optab.c: Conditionally include stdlib.h. (free): Provide a declaration if NEED_DECLARATION_FREE. * tree.c (free): Provide a declaration if NEED_DECLARATION_FREE. * rtl.h (free): Remove declaration. * tree.h (free): Remvoe declaration. * configure: Rebuilt. From-SVN: r14989 --- gcc/tree.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gcc/tree.c') diff --git a/gcc/tree.c b/gcc/tree.c index 658c05f..9d6850f 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -47,6 +47,14 @@ Boston, MA 02111-1307, USA. */ #endif #include +#ifdef HAVE_STDLIB_H +#include +#endif + +#ifdef NEED_DECLARATION_FREE +extern void free PROTO((void *)); +#endif + #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free -- cgit v1.1