diff options
Diffstat (limited to 'gas/xrealloc.c')
-rw-r--r-- | gas/xrealloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/xrealloc.c b/gas/xrealloc.c index 2d551ed..6c7f460 100644 --- a/gas/xrealloc.c +++ b/gas/xrealloc.c @@ -42,7 +42,7 @@ realloc () */ -#ifdef __STDC__ +#if __STDC__ == 1 #include <stdlib.h> #else #ifdef USG @@ -50,7 +50,7 @@ #else char *realloc (); #endif /* USG */ -#endif /* __STDC__ */ +#endif /* not __STDC__ */ #define error as_fatal |