aboutsummaryrefslogtreecommitdiff
path: root/gas/symbols.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/symbols.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/symbols.h')
-rw-r--r--gas/symbols.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/gas/symbols.h b/gas/symbols.h
index cda9faf..37db8a0 100644
--- a/gas/symbols.h
+++ b/gas/symbols.h
@@ -1,5 +1,6 @@
/* symbols.h -
- Copyright (C) 1987, 1990 Free Software Foundation, Inc.
+
+ Copyright (C) 1987, 1990, 1992 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -36,7 +37,7 @@ extern symbolS* dot_text_symbol;
extern symbolS* dot_data_symbol;
extern symbolS* dot_bss_symbol;
-#ifdef __STDC__
+#if __STDC__ == 1
char *decode_local_label_name(char *s);
char *local_label_name(int n, int augend);
@@ -51,7 +52,7 @@ void symbol_begin(void);
void symbol_table_insert(symbolS *symbolP);
void verify_symbol_chain(symbolS *rootP, symbolS *lastP);
-#else
+#else /* not __STDC__ */
char *decode_local_label_name();
char *local_label_name();
@@ -66,7 +67,7 @@ void symbol_begin();
void symbol_table_insert();
void verify_symbol_chain();
-#endif /* __STDC__ */
+#endif /* not __STDC__ */
/*