diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:13:03 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:13:03 +0000 |
commit | 3340f7e5fdd11b6c544714500fca870707793fd0 (patch) | |
tree | c8df7d465111ee74f58751a9c604b42060368f44 /gas/write.c | |
parent | a87b3269340cca83c2197909ade48e28023b9cfd (diff) | |
download | gdb-3340f7e5fdd11b6c544714500fca870707793fd0.zip gdb-3340f7e5fdd11b6c544714500fca870707793fd0.tar.gz gdb-3340f7e5fdd11b6c544714500fca870707793fd0.tar.bz2 |
White space and comment changes. #ifdef __STDC__ becomes #if __STDC__
== 1. Get the declarations right in listing.[hc].
Diffstat (limited to 'gas/write.c')
-rw-r--r-- | gas/write.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/write.c b/gas/write.c index b8eeb6e..63fee36 100644 --- a/gas/write.c +++ b/gas/write.c @@ -1,6 +1,6 @@ - /* write.c - emit .o file - Copyright (C) 1986, 1987, 1990, 1991 Free Software Foundation, Inc. + + Copyright (C) 1986, 1987, 1990, 1991, 1992 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -55,7 +55,7 @@ int magic_number_for_object_file = DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE; /* static long length; JF unused */ /* String length, including trailing '\0'. */ -#ifdef __STDC__ +#if __STDC__ == 1 static int is_dnrange(struct frag *f1, struct frag *f2); static long fixup_segment(fixS *fixP, segT this_segment_type); @@ -69,7 +69,7 @@ static long fixup_segment(); static relax_addressT relax_align(); void relax_segment(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ /* * fix_new() |