summaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-06 20:42:56 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-06 20:42:56 +0000
commita046944bca419afcd8c06e75438a1eaf1c38b341 (patch)
tree3f6751e6128a794a9cd52796dc7b26e75a461d2c /gcc/gcc.c
parent68cfba79fa2803252e9d79159aec8c92f06578b7 (diff)
downloadgcc-a046944bca419afcd8c06e75438a1eaf1c38b341.tar.gz
* stmt.c: Convert remaining prototypes to ISO C90.
* cfglayout.c: Likewise. * dbxout.c: Likewise. * gcc.c: Likewise. * genemit.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69015 138bc75d-0d04-0410-961f-82ee72b054a4
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 28341d5e429..0f59b27ba2d 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 *));