aboutsummaryrefslogtreecommitdiff
path: root/gas/write.h
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1992-02-15 21:13:03 +0000
committerK. Richard Pixley <rich@cygnus>1992-02-15 21:13:03 +0000
commit3340f7e5fdd11b6c544714500fca870707793fd0 (patch)
treec8df7d465111ee74f58751a9c604b42060368f44 /gas/write.h
parenta87b3269340cca83c2197909ade48e28023b9cfd (diff)
downloadgdb-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.h')
-rw-r--r--gas/write.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/gas/write.h b/gas/write.h
index d3f3072..1dc899e 100644
--- a/gas/write.h
+++ b/gas/write.h
@@ -1,8 +1,6 @@
-/* write.h -> write.c */
+/* write.h
-/* MODIFIED BY CHRIS BENENATI, FOR INTEL CORPORATION, 4/89 */
-/* write.h -> write.c
- Copyright (C) 1987 Free Software Foundation, Inc.
+ Copyright (C) 1987, 1992 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -95,7 +93,7 @@ COMMON fixS **seg_fix_rootP, **seg_fix_tailP; /* -> one of above. */
extern long string_byte_count;
extern int section_alignment[];
-#ifdef __STDC__
+#if __STDC__ == 1
bit_fixS *bit_fix_new(char size, char offset, long base_type, long base_adj, long min, long max, long add);
void append(char **charPP, char *fromP, unsigned long length);
@@ -111,7 +109,7 @@ fixS *fix_new(fragS *frag,
int pcrel,
enum reloc_type r_type);
-#else
+#else /* not __STDC__ */
bit_fixS *bit_fix_new();
fixS *fix_new();
@@ -119,7 +117,7 @@ void append();
void record_alignment();
void write_object_file();
-#endif /* __STDC__ */
+#endif /* not __STDC__ */
/*
* Local Variables: