diff options
Diffstat (limited to 'gcc/genopinit.c')
-rwxr-xr-x | gcc/genopinit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/genopinit.c b/gcc/genopinit.c index abeb109..f2a6fed 100755 --- a/gcc/genopinit.c +++ b/gcc/genopinit.c @@ -30,9 +30,9 @@ struct obstack *rtl_obstack = &obstack; #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free -static void fatal PVPROTO ((const char *, ...)) +static void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; -void fancy_abort PROTO((void)) ATTRIBUTE_NORETURN; +void fancy_abort (void) ATTRIBUTE_NORETURN; /* Many parts of GCC use arrays that are indexed by machine mode and contain the insn codes for pattern in the MD file that perform a given @@ -127,7 +127,7 @@ const char *optabs[] = /* Allow linking with print-rtl.c. */ char **insn_name_ptr; -static void gen_insn PROTO((rtx)); +static void gen_insn (rtx); static void gen_insn (insn) @@ -311,7 +311,7 @@ xrealloc (old, size) } static void -fatal VPROTO ((const char *format, ...)) +fatal (const char *format, ...) { #ifndef ANSI_PROTOTYPES const char *format; |