diff options
author | Andreas Jaeger <aj@suse.de> | 2003-07-06 22:42:56 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-07-06 22:42:56 +0200 |
commit | 7e51717cfba50c7bd4e44d96afc06b3ac169dca3 (patch) | |
tree | 3f6751e6128a794a9cd52796dc7b26e75a461d2c /gcc/gcc.c | |
parent | 77f9b92ca44d5e03f97cec02bda2f5bef2b5885c (diff) | |
download | gcc-7e51717cfba50c7bd4e44d96afc06b3ac169dca3.zip gcc-7e51717cfba50c7bd4e44d96afc06b3ac169dca3.tar.gz gcc-7e51717cfba50c7bd4e44d96afc06b3ac169dca3.tar.bz2 |
stmt.c: Convert remaining prototypes to ISO C90.
* stmt.c: Convert remaining prototypes to ISO C90.
* cfglayout.c: Likewise.
* dbxout.c: Likewise.
* gcc.c: Likewise.
* genemit.c: Likewise.
From-SVN: r69015
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1561,7 +1561,7 @@ init_gcc_specs (struct obstack *obstack, const char *shared_name, /* Initialize the specs lookup routines. */ static void -init_spec () +init_spec (void) { struct spec_list *next = (struct spec_list *) 0; struct spec_list *sl = (struct spec_list *) 0; @@ -1802,7 +1802,7 @@ static const char *programname; /* Allocate the argument vector. */ static void -alloc_args () +alloc_args (void) { argbuf_length = 10; argbuf = (const char **) xmalloc (argbuf_length * sizeof (const char *)); |