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/hex-value.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/hex-value.c')
-rw-r--r-- | gas/hex-value.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/hex-value.c b/gas/hex-value.c index b724377..01fe241 100644 --- a/gas/hex-value.c +++ b/gas/hex-value.c @@ -24,7 +24,8 @@ #define __ (42) /* blatently illegal digit value */ /* exceeds any normal radix */ -#if !defined(__STDC__) && !defined(const) + +#if (__STDC__ != 1) && !defined(const) #define const /* empty */ #endif const char |