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/c-lex.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/c-lex.c')
-rwxr-xr-x | gcc/c-lex.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 834f946..c6e02dd 100755 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -42,7 +42,7 @@ Boston, MA 02111-1307, USA. */ extern cpp_reader parse_in; extern cpp_options parse_options; -extern void yyprint PROTO((FILE *, int, YYSTYPE)); +extern void yyprint (FILE *, int, YYSTYPE); /* The elements of `ridpointers' are identifier nodes for the reserved type names and storage classes. @@ -92,13 +92,13 @@ static int end_of_file; #ifdef HANDLE_GENERIC_PRAGMAS -static int handle_generic_pragma PROTO((int)); +static int handle_generic_pragma (int); #endif /* HANDLE_GENERIC_PRAGMAS */ -static int whitespace_cr PROTO((int)); -static int skip_white_space PROTO((int)); -static int skip_white_space_on_line PROTO((void)); -static char *extend_token_buffer PROTO((char *)); -static int readescape PROTO((int *)); +static int whitespace_cr (int); +static int skip_white_space (int); +static int skip_white_space_on_line (void); +static char *extend_token_buffer (char *); +static int readescape (int *); /* Do not insert generated code into the source, instead, include it. This allows us to build gcc automatically even for targets that |