diff options
author | Andreas Jaeger <aj@suse.de> | 2003-07-06 11:56:09 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-07-06 11:56:09 +0200 |
commit | 0c20a65f04004843874f9e22c460207285dfdec1 (patch) | |
tree | 4fb7a1aaa85c3c4aeda23d46346034b73d069df2 /gcc/gccspec.c | |
parent | 391cfc46896ec536a390f09b192b58c558e02b05 (diff) | |
download | gcc-0c20a65f04004843874f9e22c460207285dfdec1.zip gcc-0c20a65f04004843874f9e22c460207285dfdec1.tar.gz gcc-0c20a65f04004843874f9e22c460207285dfdec1.tar.bz2 |
jump.c: Convert prototypes to ISO C90.
* jump.c: Convert prototypes to ISO C90.
* langhooks-def.h: Likewise. Add extern to prototypes.
* langhooks.c: Likewise.
* langhooks.h: Likewise.
* lcm.c: Likewise.
* local-alloc.c: Likewise.
* loop-init.c: Likewise.
* loop-unroll.c: Likewise.
* loop-unswitch.c: Likewise.
* loop.c: Likewise.
* loop.h: Likewise. Add extern to prototypes.
* machmode.h: Likewise.
* main.c: Likewise.
* mbchar.c: Likewise.
* mbchar.h: Likewise.
* mkdeps.c: Likewise.
* mkdeps.h: Likewise.
* optabs.c: Likewise.
* optabs.h: Likewise.
* output.h: Likewise.
* gccspec.c: Likwise.
* postreload.c: Likewise.
* prefix.c: Likewise.
* prefix.h: Likewise.
* print-rtl.c: Likewise.
* print-tree.c: Likewise.
* profile.c: Likewise.
* read-rtl.c: Likewise.
* real.c: Likewise.
* real.h: Likewise.
* recog.c: Likewise.
* recog.h: Likewise.
* reg-stack.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* regrename.c: Likewise.
* regs.h: Likewise.
* reload.c: Likewise.
* reload.h: Likewise.
* reload1.c: Likewise.
* reorg.c: Likewise.
* resource.c: Likewise.
* resource.h: Likewise.
* rtl-error.c: Likewise.
* rtl.c: Likewise.
* rtl.h: Likewise.
* rtlanal.c: Likewise.
From-SVN: r68998
Diffstat (limited to 'gcc/gccspec.c')
-rw-r--r-- | gcc/gccspec.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/gccspec.c b/gcc/gccspec.c index c30306c..b893d65 100644 --- a/gcc/gccspec.c +++ b/gcc/gccspec.c @@ -1,5 +1,5 @@ /* Specific flags and argument handling of the C front-end. - Copyright (C) 1999, 2001 Free Software Foundation, Inc. + Copyright (C) 1999, 2001, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -26,10 +26,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Filter argc and argv before processing by the gcc driver proper. */ void -lang_specific_driver (in_argc, in_argv, in_added_libraries) - int *in_argc ATTRIBUTE_UNUSED; - const char *const **in_argv ATTRIBUTE_UNUSED; - int *in_added_libraries ATTRIBUTE_UNUSED; +lang_specific_driver (int *in_argc ATTRIBUTE_UNUSED, + const char *const **in_argv ATTRIBUTE_UNUSED, + int *in_added_libraries ATTRIBUTE_UNUSED) { #ifdef ENABLE_SHARED_LIBGCC int i; @@ -96,7 +95,7 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries) /* Called before linking. Returns 0 on success and -1 on failure. */ int -lang_specific_pre_link () +lang_specific_pre_link (void) { return 0; /* Not used for C. */ } @@ -104,7 +103,7 @@ lang_specific_pre_link () /* Number of extra output files that lang_specific_pre_link may generate. */ int lang_specific_extra_outfiles = 0; /* Not used for C. */ -/* Table of language-specific spec functions. */ +/* Table of language-specific spec functions. */ const struct spec_function lang_specific_spec_functions[] = { { 0, 0 } |