diff options
Diffstat (limited to 'gcc/cexp.c')
-rw-r--r-- | gcc/cexp.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2080,14 +2080,14 @@ initialize_random_junk () void error VPROTO ((char * msg, ...)) { -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES char * msg; #endif va_list args; VA_START (args, msg); -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES msg = va_arg (args, char *); #endif @@ -2100,14 +2100,14 @@ error VPROTO ((char * msg, ...)) void pedwarn VPROTO ((char * msg, ...)) { -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES char * msg; #endif va_list args; VA_START (args, msg); -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES msg = va_arg (args, char *); #endif @@ -2120,14 +2120,14 @@ pedwarn VPROTO ((char * msg, ...)) void warning VPROTO ((char * msg, ...)) { -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES char * msg; #endif va_list args; VA_START (args, msg); -#ifndef __STDC__ +#ifndef ANSI_PROTOTYPES msg = va_arg (args, char *); #endif |