diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-19 22:52:43 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-19 22:52:43 +0000 |
commit | f84c2018797e14c7deac9265a96e51707ab0dcdb (patch) | |
tree | 0319b7469142d309d9f854a370b3b83ac8d4ac57 /gcc/cpperror.c | |
parent | 299d06ad4acdbc03b0912a1b0f8b36d277f0efac (diff) | |
download | gcc-f84c2018797e14c7deac9265a96e51707ab0dcdb.tar.gz |
cppalloc.c: PROTO -> PARAMS.
* cppalloc.c: PROTO -> PARAMS.
* cpperror.c: Likewise.
* cppfiles.c: Likewise.
* cpplib.c: Likewise.
* cpplib.h: Likewise.
From-SVN: r31521
Diffstat (limited to 'gcc/cpperror.c')
-rw-r--r-- | gcc/cpperror.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c index bf335814f09..220f8fadecc 100644 --- a/gcc/cpperror.c +++ b/gcc/cpperror.c @@ -124,7 +124,7 @@ v_cpp_message (pfile, is_error, msgid, ap) } void -cpp_message VPROTO ((cpp_reader *pfile, int is_error, const char *msgid, ...)) +cpp_message VPARAMS ((cpp_reader *pfile, int is_error, const char *msgid, ...)) { #ifndef ANSI_PROTOTYPES cpp_reader *pfile; @@ -152,7 +152,7 @@ cpp_message VPROTO ((cpp_reader *pfile, int is_error, const char *msgid, ...)) CPP_FATAL_ERRORS. */ void -cpp_fatal VPROTO ((cpp_reader *pfile, const char *msgid, ...)) +cpp_fatal VPARAMS ((cpp_reader *pfile, const char *msgid, ...)) { #ifndef ANSI_PROTOTYPES cpp_reader *pfile; @@ -188,7 +188,7 @@ cpp_pfatal_with_name (pfile, name) /* Print an error message. */ void -cpp_notice VPROTO ((const char *msgid, ...)) +cpp_notice VPARAMS ((const char *msgid, ...)) { #ifndef ANSI_PROTOTYPES const char *msgid; |