diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-09-07 20:35:41 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-09-07 20:35:41 +0000 |
commit | 25074193a09a9c2261d7d2987d561333245999af (patch) | |
tree | 7cdb152b00ad63be0c428ea7aa6336c666771bdb /gcc | |
parent | bcf12124f0ed59198a225fc598427ba32c742e4f (diff) | |
download | gcc-25074193a09a9c2261d7d2987d561333245999af.zip gcc-25074193a09a9c2261d7d2987d561333245999af.tar.gz gcc-25074193a09a9c2261d7d2987d561333245999af.tar.bz2 |
* toplev.c (print_switch_values): Make static to match prototype.
From-SVN: r22313
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/toplev.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dde533c..6edafc9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 7 23:30:07 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * toplev.c (print_switch_values): Make static to match prototype. + Mon Sep 7 19:13:59 1998 Jeffrey A Law (law@cygnus.com) * configure.in: If we are unable to find the "gnatbind" program, diff --git a/gcc/toplev.c b/gcc/toplev.c index f850cab..8696b77 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4962,7 +4962,7 @@ print_single_switch (file, pos, max, indent, sep, term, type, name) Each line begins with INDENT and ends with TERM. Each switch is separated from the next by SEP. */ -void +static void print_switch_values (file, pos, max, indent, sep, term) FILE *file; int pos, max; |