diff options
author | Bruce Korb <bkorb@gnu.org> | 2000-09-12 14:28:55 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 2000-09-12 14:28:55 +0000 |
commit | 3af556f74d0d938e1ad240fe44bedf47e97ce4f5 (patch) | |
tree | f13d965e3c5b9e45cd60009af6a3d7dd4b8c368f /gcc/fixinc/fixincl.c | |
parent | 32892c52e4674485c40311bd82d64f5adb025905 (diff) | |
download | gcc-3af556f74d0d938e1ad240fe44bedf47e97ce4f5.zip gcc-3af556f74d0d938e1ad240fe44bedf47e97ce4f5.tar.gz gcc-3af556f74d0d938e1ad240fe44bedf47e97ce4f5.tar.bz2 |
code cleanups
From-SVN: r36359
Diffstat (limited to 'gcc/fixinc/fixincl.c')
-rw-r--r-- | gcc/fixinc/fixincl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/fixinc/fixincl.c b/gcc/fixinc/fixincl.c index de3cfcc..e0513e5 100644 --- a/gcc/fixinc/fixincl.c +++ b/gcc/fixinc/fixincl.c @@ -93,12 +93,11 @@ const char incl_quote_pat[] = "^[ \t]*#[ \t]*include[ \t]*\"[^/]"; tSCC z_fork_err[] = "Error %d (%s) starting filter process for %s\n"; regex_t incl_quote_re; -void do_version (); -char *load_file _P_((const char *)); -void process _P_((char *, const char *)); -void run_compiles (); -void initialize _P_((int argc,char** argv)); -void process (); +void do_version PARAMS((void)); +char *load_file PARAMS((const char *)); +void run_compiles PARAMS((void)); +void initialize PARAMS((int argc,char** argv)); +void process PARAMS((void)); /* External Source Code */ @@ -523,6 +522,7 @@ run_compiles () p_test->p_test_regex = p_re++; compile_re (p_test->pz_test_text, p_test->p_test_regex, 0, "select test", p_fixd->fix_name); + default: break; } p_test++; } |