diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:09:34 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:09:34 +0000 |
commit | a87b3269340cca83c2197909ade48e28023b9cfd (patch) | |
tree | 70aaf742bce3e0cb67d7500523b91108cd3981cd /gas/config/tc-i386.c | |
parent | 5b3fb530400928638f5a542f9bb8e37d7e4db8a9 (diff) | |
download | gdb-a87b3269340cca83c2197909ade48e28023b9cfd.zip gdb-a87b3269340cca83c2197909ade48e28023b9cfd.tar.gz gdb-a87b3269340cca83c2197909ade48e28023b9cfd.tar.bz2 |
White space and comment changes, and #ifdef __STDC__ becomes #if
__STDC__ == 1.
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 |