diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:27:33 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:27:33 -0800 |
commit | bbe0e72828710bb413ce01e22173adcc761ec7f8 (patch) | |
tree | 30ba7dc9393ebc3a971200ec612debbc8c029da9 /gcc/gcc.c | |
parent | ecae31d652106c1f3b7429570de013c3bbf33e7a (diff) |
remove ANSI_PROTOTYPES ifdefs
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); |