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-pragma.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/c-pragma.c')
-rwxr-xr-x | gcc/c-pragma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index f9bfbe7..35379e3 100755 --- a/gcc/c-pragma.c +++ b/gcc/c-pragma.c @@ -50,8 +50,8 @@ typedef struct align_stack static struct align_stack * alignment_stack = NULL; -static int push_alignment PROTO((int)); -static int pop_alignment PROTO((void)); +static int push_alignment (int); +static int pop_alignment (void); /* Push an alignment value onto the stack. */ static int @@ -193,7 +193,7 @@ insert_pack_attributes (node, attributes, prefix) #endif /* HANDLE_PRAGMA_PACK_PUSH_POP */ #ifdef HANDLE_PRAGMA_WEAK -static int add_weak PROTO((char *, char *)); +static int add_weak (char *, char *); static int add_weak (name, value) |