diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-12 22:47:13 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-12 22:47:13 +0000 |
commit | 6e090c767ad2d01b5038923a8527b070792814dc (patch) | |
tree | 6299ee4b870941aa46194ccf9c38c3cf995c7196 /gcc/c-lex.c | |
parent | dd42e13519fd78d873e5aeb4528162a499a299eb (diff) | |
download | gcc-6e090c767ad2d01b5038923a8527b070792814dc.zip gcc-6e090c767ad2d01b5038923a8527b070792814dc.tar.gz gcc-6e090c767ad2d01b5038923a8527b070792814dc.tar.bz2 |
c-common.c: PROTO -> PARAMS.
* c-common.c: PROTO -> PARAMS.
* c-common.h: Likewise.
* c-decl.c: Likewise.
* c-iterate.c: Likewise.
* c-lang.c: Likewise.
* c-lex.c: Likewise.
* c-lex.h: Likewise.
* c-parse.in: Likewise.
* c-pragma.c: Likewise.
* c-pragma.h: Likewise.
* c-tree.h: Likewise.
* c-typeck.c: Likewise.
* objc/objc-act.c: Likewise.
* objc/objc-act.h: Likewise.
From-SVN: r31362
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 8b77b5e..b9d2793 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -59,7 +59,7 @@ extern cpp_options parse_options; FILE *finput; #endif -extern void yyprint PROTO((FILE *, int, YYSTYPE)); +extern void yyprint PARAMS ((FILE *, int, YYSTYPE)); /* The elements of `ridpointers' are identifier nodes for the reserved type names and storage classes. @@ -91,7 +91,7 @@ struct putback_buffer { static struct putback_buffer putback = {NULL, 0, -1}; -static inline int getch PROTO ((void)); +static inline int getch PARAMS ((void)); static inline int getch () @@ -105,7 +105,7 @@ getch () return getc (finput); } -static inline void put_back PROTO ((int)); +static inline void put_back PARAMS ((int)); static inline void put_back (ch) @@ -160,15 +160,15 @@ static int ignore_escape_flag; static int end_of_file; #ifdef HANDLE_GENERIC_PRAGMAS -static int handle_generic_pragma PROTO((int)); +static int handle_generic_pragma PARAMS ((int)); #endif /* HANDLE_GENERIC_PRAGMAS */ -static int whitespace_cr PROTO((int)); -static int skip_white_space PROTO((int)); -static char *extend_token_buffer PROTO((const char *)); -static int readescape PROTO((int *)); -static void parse_float PROTO((PTR)); -static void extend_token_buffer_to PROTO((int)); -static int read_line_number PROTO((int *)); +static int whitespace_cr PARAMS ((int)); +static int skip_white_space PARAMS ((int)); +static char *extend_token_buffer PARAMS ((const char *)); +static int readescape PARAMS ((int *)); +static void parse_float PARAMS ((PTR)); +static void extend_token_buffer_to PARAMS ((int)); +static int read_line_number PARAMS ((int *)); /* Do not insert generated code into the source, instead, include it. This allows us to build gcc automatically even for targets that @@ -1204,7 +1204,7 @@ parse_float (data) next token, which screws up feed_input. So just return a null character. */ -static inline int token_getch PROTO ((void)); +static inline int token_getch PARAMS ((void)); static inline int token_getch () @@ -1216,7 +1216,7 @@ token_getch () return GETC (); } -static inline void token_put_back PROTO ((int)); +static inline void token_put_back PARAMS ((int)); static inline void token_put_back (ch) |