diff options
Diffstat (limited to 'gcc/gcc.c')
-rwxr-xr-x | gcc/gcc.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -5620,16 +5620,10 @@ fancy_abort () static void fatal (char *format, ...) { -#ifndef ANSI_PROTOTYPES - char *format; -#endif va_list ap; VA_START (ap, format); -#ifndef ANSI_PROTOTYPES - format = va_arg (ap, char *); -#endif fprintf (stderr, "%s: ", programname); vfprintf (stderr, format, ap); @@ -5642,16 +5636,10 @@ fatal (char *format, ...) static void error (char *format, ...) { -#ifndef ANSI_PROTOTYPES - char *format; -#endif va_list ap; VA_START (ap, format); -#ifndef ANSI_PROTOTYPES - format = va_arg (ap, char *); -#endif fprintf (stderr, "%s: ", programname); vfprintf (stderr, format, ap); |