diff options
author | Douglas B Rupp <rupp@gnat.com> | 2001-12-13 06:55:26 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-12-13 06:55:26 -0500 |
commit | c48f792ceebf46a23ed07a682e3288af59012832 (patch) | |
tree | 8c4fa35ed53e741f7a8900d8e3f97e5e06c4c631 /gcc | |
parent | 0dd0e980b5c9b23a3749647c69603f8a29eea4c3 (diff) | |
download | gcc-c48f792ceebf46a23ed07a682e3288af59012832.zip gcc-c48f792ceebf46a23ed07a682e3288af59012832.tar.gz gcc-c48f792ceebf46a23ed07a682e3288af59012832.tar.bz2 |
vms-cc.c (preprocess_args): Fix forward declaration.
* config/alpha/vms-cc.c (preprocess_args): Fix forward
declaration.
From-SVN: r47970
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/vms-cc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cb7af2d..ee9e1c3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 13 06:48:38 2001 Douglas B. Rupp <rupp@gnat.com> + + * config/alpha/vms-cc.c (preprocess_args): Fix forward + declaration. + Thu Dec 13 12:31:07 CET 2001 Jan Hubicka <jh@suse.cz> * predict.c (estimate_probability): Reorganize opcode heuristics. diff --git a/gcc/config/alpha/vms-cc.c b/gcc/config/alpha/vms-cc.c index a95a82e..a171b1c 100644 --- a/gcc/config/alpha/vms-cc.c +++ b/gcc/config/alpha/vms-cc.c @@ -59,7 +59,7 @@ static void addarg PARAMS ((const char *)); /* Preprocess the number of args in P_ARGC and contained in ARGV. Look for special flags, etc. that must be handled first. */ -static void preprocess_args PARAMS ((*, **)); +static void preprocess_args PARAMS ((int *, char **)); /* Process the number of args in P_ARGC and contained in ARGV. Look for special flags, etc. that must be handled for the VMS compiler. */ |