diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-14 17:14:43 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-14 17:14:43 +0000 |
commit | 621f6678bd276a87e8bf36b04c507b19ef1e0c49 (patch) | |
tree | c581c8d237ef2fffdfeee6182fd81e25ea6ed527 /gcc/fix-header.c | |
parent | b7dbbdb2257d8eb618342a6e26688eb8036b10a1 (diff) | |
download | gcc-621f6678bd276a87e8bf36b04c507b19ef1e0c49.tar.gz |
* eh-common.h: PROTO -> PARAMS.
* emit-rtl.c: Likewise.
* errors.c: Likewise.
* errors.h: Likewise.
* except.c: Likewise.
* except.h: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* final.c: Likewise.
* fix-header.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* function.h: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31419 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r-- | gcc/fix-header.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c index a87137d6d2d..b01f65605de 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -1,5 +1,5 @@ /* fix-header.c - Make C header file suitable for C++. - Copyright (C) 1993, 94-98, 1999 Free Software Foundation, Inc. + Copyright (C) 1993, 94-99, 2000 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -77,8 +77,8 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "cpplib.h" #include "cpphash.h" -static void v_fatal PROTO ((const char *, va_list)) ATTRIBUTE_NORETURN; -static void fatal PVPROTO ((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; +static void v_fatal PARAMS ((const char *, va_list)) ATTRIBUTE_NORETURN; +static void fatal PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; sstring buf; @@ -187,17 +187,17 @@ struct symbol_list { struct symbol_list symbol_table[SYMBOL_TABLE_SIZE]; int cur_symbol_table_size; -static void add_symbols PROTO ((symbol_flags, namelist)); -static struct fn_decl *lookup_std_proto PROTO ((const char *, int)); -static void write_lbrac PROTO ((void)); -static void recognized_macro PROTO ((const char *)); -static void check_macro_names PROTO ((cpp_reader *, namelist)); -static void read_scan_file PROTO ((char *, int, char **)); -static void write_rbrac PROTO ((void)); -static int inf_skip_spaces PROTO ((int)); -static int inf_read_upto PROTO ((sstring *, int)); -static int inf_scan_ident PROTO ((sstring *, int)); -static int check_protection PROTO ((int *, int *)); +static void add_symbols PARAMS ((symbol_flags, namelist)); +static struct fn_decl *lookup_std_proto PARAMS ((const char *, int)); +static void write_lbrac PARAMS ((void)); +static void recognized_macro PARAMS ((const char *)); +static void check_macro_names PARAMS ((cpp_reader *, namelist)); +static void read_scan_file PARAMS ((char *, int, char **)); +static void write_rbrac PARAMS ((void)); +static int inf_skip_spaces PARAMS ((int)); +static int inf_read_upto PARAMS ((sstring *, int)); +static int inf_scan_ident PARAMS ((sstring *, int)); +static int check_protection PARAMS ((int *, int *)); static void add_symbols (flags, names) @@ -1062,7 +1062,7 @@ check_protection (ifndef_line, endif_line) return 1; } -extern int main PROTO ((int, char **)); +extern int main PARAMS ((int, char **)); int main (argc, argv) @@ -1320,7 +1320,7 @@ v_fatal (str, ap) } static void -fatal VPROTO ((const char *str, ...)) +fatal VPARAMS ((const char *str, ...)) { #ifndef ANSI_PROTOTYPES const char *str; |