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-aux-info.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/c-aux-info.c')
-rwxr-xr-x | gcc/c-aux-info.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/c-aux-info.c b/gcc/c-aux-info.c index aa00448..929e4c3 100755 --- a/gcc/c-aux-info.c +++ b/gcc/c-aux-info.c @@ -37,12 +37,12 @@ typedef enum formals_style_enum formals_style; static char *data_type; -static char *affix_data_type PROTO((char *)); -static char *gen_formal_list_for_type PROTO((tree, formals_style)); -static int deserves_ellipsis PROTO((tree)); -static char *gen_formal_list_for_func_def PROTO((tree, formals_style)); -static char *gen_type PROTO((char *, tree, formals_style)); -static char *gen_decl PROTO((tree, int, formals_style)); +static char *affix_data_type (char *); +static char *gen_formal_list_for_type (tree, formals_style); +static int deserves_ellipsis (tree); +static char *gen_formal_list_for_func_def (tree, formals_style); +static char *gen_type (char *, tree, formals_style); +static char *gen_decl (tree, int, formals_style); /* Given a string representing an entire type or an entire declaration which only lacks the actual "data-type" specifier (at its left end), |