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-bout.h | |
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-bout.h')
-rw-r--r-- | gas/config/obj-bout.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/obj-bout.h b/gas/config/obj-bout.h index 07a4118..8138cda 100644 --- a/gas/config/obj-bout.h +++ b/gas/config/obj-bout.h @@ -297,12 +297,12 @@ typedef struct { #define OBJ_EMIT_LINENO(a, b, c) {;} #define obj_pre_write_hook(a) {;} -#ifdef __STDC__ +#if __STDC__ struct fix; void tc_aout_fix_to_chars(char *where, struct fix *fixP, relax_addressT segment_address); -#else +#else /* not __STDC__ */ void tc_aout_fix_to_chars(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ /* * Local Variables: |