diff options
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index fba991b..42398ae 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1,5 +1,5 @@ /* i386.c -- Assemble code for the Intel 80386 - Copyright (C) 1989, 1991 Free Software Foundation. + Copyright (C) 1989, 1991, 1992 Free Software Foundation. This file is part of GAS, the GNU Assembler. @@ -200,19 +200,19 @@ const relax_typeS md_relax_table[] = { }; -#ifdef __STDC__ +#if __STDC__ == 1 static char *output_invalid(int c); static int i386_operand(char *operand_string); static reg_entry *parse_register(char *reg_string); -#else /* __STDC__ */ +#else /* not __STDC__ */ static char *output_invalid(); static int i386_operand(); static reg_entry *parse_register(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ /* Ignore certain directives generated by gcc. This probably should |