diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/messages.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 98d8b1f..2e099fd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Fri Sep 25 14:12:58 1992 Ken Raeburn (raeburn@kyriath.cygnus.com) + + * as.h: Test if __STDC__ is defined only, don't test its value. + * messages.c: If __STDC__ is not defined, define NO_STDARG. + Thu Sep 24 12:42:32 1992 Brendan Kehoe (brendan@rtl.cygnus.com) * listing.c (debugging_pseudo): Add stabs and stabn as things to diff --git a/gas/messages.c b/gas/messages.c index 0b56527..f292afd 100644 --- a/gas/messages.c +++ b/gas/messages.c @@ -22,6 +22,12 @@ #include "as.h" +#ifndef __STDC__ +#ifndef NO_STDARG +#define NO_STDARG +#endif +#endif + #ifndef NO_STDARG #include <stdarg.h> #else |