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-decl.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/c-decl.c')
-rwxr-xr-x | gcc/c-decl.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index edfd73a..fa028a5 100755 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -417,20 +417,20 @@ static struct binding_level *label_level_chain; /* Forward declarations. */ -static struct binding_level * make_binding_level PROTO((void)); -static void clear_limbo_values PROTO((tree)); -static int duplicate_decls PROTO((tree, tree, int)); -static char *redeclaration_error_message PROTO((tree, tree)); -static void storedecls PROTO((tree)); -static void storetags PROTO((tree)); -static tree lookup_tag PROTO((enum tree_code, tree, - struct binding_level *, int)); -static tree lookup_tag_reverse PROTO((tree)); -static tree grokdeclarator PROTO((tree, tree, enum decl_context, - int)); -static tree grokparms PROTO((tree, int)); -static int field_decl_cmp PROTO((const GENERIC_PTR, const GENERIC_PTR)); -static void layout_array_type PROTO((tree)); +static struct binding_level * make_binding_level (void); +static void clear_limbo_values (tree); +static int duplicate_decls (tree, tree, int); +static char *redeclaration_error_message (tree, tree); +static void storedecls (tree); +static void storetags (tree); +static tree lookup_tag (enum tree_code, tree, + struct binding_level *, int); +static tree lookup_tag_reverse (tree); +static tree grokdeclarator (tree, tree, enum decl_context, + int); +static tree grokparms (tree, int); +static int field_decl_cmp (const GENERIC_PTR, const GENERIC_PTR); +static void layout_array_type (tree); /* C-specific option variables. */ |