diff options
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) |