diff options
author | Jeffrey A Law <law@cygnus.com> | 1997-08-28 13:08:54 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-08-28 07:08:54 -0600 |
commit | 2601ebca412b05d466bccccd2c4a74e1cec60c05 (patch) | |
tree | 535b86a0463859fbf3777e93b2f71e638ba146f7 /gcc/tree.c | |
parent | d5d23425d06d209ff5366e7d0768c12b8d6419b5 (diff) | |
download | gcc-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.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |