diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
commit | ecae31d652106c1f3b7429570de013c3bbf33e7a (patch) | |
tree | 6981957216b10aad71c792714a25c5750611754e /gcc/cpperror.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/cpperror.c')
-rwxr-xr-x | gcc/cpperror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c index afb52f4..90e2cc2 100755 --- a/gcc/cpperror.c +++ b/gcc/cpperror.c @@ -109,7 +109,7 @@ v_cpp_message (pfile, is_error, msg, ap) } void -cpp_message VPROTO ((cpp_reader *pfile, int is_error, const char *msg, ...)) +cpp_message (cpp_reader *pfile, int is_error, const char *msg, ...) { #ifndef ANSI_PROTOTYPES cpp_reader *pfile; @@ -137,7 +137,7 @@ cpp_message VPROTO ((cpp_reader *pfile, int is_error, const char *msg, ...)) CPP_FATAL_ERRORS. */ void -cpp_fatal VPROTO ((cpp_reader *pfile, const char *str, ...)) +cpp_fatal (cpp_reader *pfile, const char *str, ...) { #ifndef ANSI_PROTOTYPES cpp_reader *pfile; |