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/signame.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/signame.h')
-rwxr-xr-x | gas/config/signame.h | 6 |
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 */ |