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/obj-coff.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/obj-coff.c')
-rw-r--r-- | gas/config/obj-coff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index 6ca009f..a918736 100644 --- a/gas/config/obj-coff.c +++ b/gas/config/obj-coff.c @@ -1,5 +1,5 @@ /* coff object file format - Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc. + Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc. This file is part of GAS. @@ -59,7 +59,7 @@ const segT N_TYPE_seg [32] = SEG_GOOF,SEG_GOOF,SEG_GOOF,SEG_GOOF,SEG_GOOF,SEG_GOOF,SEG_GOOF }; -#ifdef __STDC__ +#if __STDC__ == 1 char *s_get_name(symbolS *s); static symbolS *tag_find_or_make(char *name); @@ -83,7 +83,7 @@ static void obj_coff_val(void); static void tag_init(void); static void tag_insert(char *name, symbolS *symbolP); -#else +#else /* not __STDC__ */ char *s_get_name(); static symbolS *tag_find(); @@ -103,7 +103,7 @@ static void obj_coff_val(); static void tag_init(); static void tag_insert(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ static struct hash_control *tag_hash; static symbolS *def_symbol_in_progress = NULL; |