From bbe0e72828710bb413ce01e22173adcc761ec7f8 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Tue, 16 Feb 2016 01:27:33 -0800 Subject: remove ANSI_PROTOTYPES ifdefs --- gcc/genoutput.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'gcc/genoutput.c') diff --git a/gcc/genoutput.c b/gcc/genoutput.c index 17eb476..082cf79 100755 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -952,16 +952,10 @@ mybcopy (b1, b2, length) static void fatal (const char *format, ...) { -#ifndef ANSI_PROTOTYPES - const char *format; -#endif va_list ap; VA_START (ap, format); -#ifndef ANSI_PROTOTYPES - format = va_arg (ap, const char *); -#endif fprintf (stderr, "genoutput: "); vfprintf (stderr, format, ap); @@ -982,16 +976,10 @@ fancy_abort () static void error (const char *format, ...) { -#ifndef ANSI_PROTOTYPES - const char *format; -#endif va_list ap; VA_START (ap, format); -#ifndef ANSI_PROTOTYPES - format = va_arg (ap, const char *); -#endif fprintf (stderr, "genoutput: "); vfprintf (stderr, format, ap); -- cgit v1.2.3