aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-07-06 22:42:56 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-07-06 22:42:56 +0200
commit7e51717cfba50c7bd4e44d96afc06b3ac169dca3 (patch)
tree3f6751e6128a794a9cd52796dc7b26e75a461d2c /gcc/gcc.c
parent77f9b92ca44d5e03f97cec02bda2f5bef2b5885c (diff)
downloadgcc-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 28341d5..0f59b27 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -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 *));