diff options
author | Andreas Jaeger <aj@suse.de> | 2003-07-06 08:15:36 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-07-06 08:15:36 +0200 |
commit | 1d088deebefc04b8c99fe00e4df4e9c4ddacec2d (patch) | |
tree | 5608aad0f59e34928c3ebcd5b5bf7492d6a81e96 /gcc/ggc.h | |
parent | 481668695af894b6738d2d64f3e005b2709399c5 (diff) | |
download | gcc-1d088deebefc04b8c99fe00e4df4e9c4ddacec2d.zip gcc-1d088deebefc04b8c99fe00e4df4e9c4ddacec2d.tar.gz gcc-1d088deebefc04b8c99fe00e4df4e9c4ddacec2d.tar.bz2 |
gcc.c: Convert prototypes to ISO C90.
* gcc.c: Convert prototypes to ISO C90.
* gcc.h: Likewise.
* gcov-dump.c: Likewise.
* gcov-iov.c: Likewise.
* gcse.c: Likewise.
* genattrtab.h: Likewise.
* ggc.h: Likewise.
* global.c: Likewise.
* graph.c: Likewise.
* graph.h: Likewise.
* hosthooks.h: Likewise.
* hooks.h: Likewise.
* hooks.c: Likewise.
* hashtable.h: Likewise.
* hashtable.c: Likewise.
* haifa-sched.c: Likewise.
* integrate.h: Likewise.
* integrate.c: Likewise.
* input.h: Likewise.
* ifcvt.c: Likewise.
From-SVN: r68995
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r-- | gcc/ggc.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -219,8 +219,7 @@ extern void ggc_splay_dont_free (void *, void *); /* Allocate a gc-able string, and fill it with LENGTH bytes from CONTENTS. If LENGTH is -1, then CONTENTS is assumed to be a null-terminated string and the memory sized accordingly. */ -extern const char *ggc_alloc_string PARAMS ((const char *contents, - int length)); +extern const char *ggc_alloc_string (const char *contents, int length); /* Make a copy of S, in GC-able memory. */ #define ggc_strdup(S) ggc_alloc_string((S), -1) |