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/xmalloc.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/xmalloc.c')
-rw-r--r-- | gas/xmalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/xmalloc.c b/gas/xmalloc.c index 92c06ff..99b2fa2 100644 --- a/gas/xmalloc.c +++ b/gas/xmalloc.c @@ -42,7 +42,7 @@ */ #include <stdio.h> -#ifdef __STDC__ +#if __STDC__ == 1 #include <stdlib.h> #else #ifdef USG @@ -50,7 +50,7 @@ #else char * malloc(); #endif /* USG */ -#endif /* __STDC__ */ +#endif /* not __STDC__ */ #define error as_fatal |