aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1997-08-28 13:08:54 +0000
committerJeff Law <law@gcc.gnu.org>1997-08-28 07:08:54 -0600
commit2601ebca412b05d466bccccd2c4a74e1cec60c05 (patch)
tree535b86a0463859fbf3777e93b2f71e638ba146f7 /gcc/tree.c
parentd5d23425d06d209ff5366e7d0768c12b8d6419b5 (diff)
downloadgcc-2601ebca412b05d466bccccd2c4a74e1cec60c05.zip
gcc-2601ebca412b05d466bccccd2c4a74e1cec60c05.tar.gz
gcc-2601ebca412b05d466bccccd2c4a74e1cec60c05.tar.bz2
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
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c8
1 files changed, 8 insertions, 0 deletions
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 <stdio.h>
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
+#ifdef NEED_DECLARATION_FREE
+extern void free PROTO((void *));
+#endif
+
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free