diff options
Diffstat (limited to 'gcc/gencodes.c')
-rw-r--r-- | gcc/gencodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gencodes.c b/gcc/gencodes.c index 429e4635f4d..696dbfb2802 100644 --- a/gcc/gencodes.c +++ b/gcc/gencodes.c @@ -82,14 +82,14 @@ xrealloc (ptr, size) static void fatal VPROTO ((char *format, ...)) { -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES char *format; #endif va_list ap; VA_START (ap, format); -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES format = va_arg (ap, char *); #endif |