aboutsummaryrefslogtreecommitdiff
path: root/gas/config/signame.h
diff options
context:
space:
mode:
Diffstat (limited to 'gas/config/signame.h')
-rwxr-xr-xgas/config/signame.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/signame.h b/gas/config/signame.h
index 3af31d8..8eb0889 100755
--- a/gas/config/signame.h
+++ b/gas/config/signame.h
@@ -18,7 +18,7 @@
/* Names for signals from 0 to NSIG-1. */
extern char *sys_siglist[];
-#ifdef __STDC__
+#if __STDC__ == 1
/* Return the abbreviation (e.g. ABRT, FPE, etc.) for signal NUMBER.
Do not return this as a const char *. The caller might want to
assign it to a char *. */
@@ -32,12 +32,12 @@ int sig_number (const char *abbrev);
a colon, and followed by a newline. */
void psignal (int signal, const char *message);
-#else
+#else /* not __STDC__ */
char *sig_abbrev ();
int sig_number ();
void psignal ();
-#endif
+#endif /* not __STDC__ */
/* end of signame.h */