defined(__STDC__) / __STDC__==1 changes recommended by gnu
authorKen Raeburn <raeburn@cygnus>
Fri, 25 Sep 1992 21:14:46 +0000 (21:14 +0000)
committerKen Raeburn <raeburn@cygnus>
Fri, 25 Sep 1992 21:14:46 +0000 (21:14 +0000)
gas/ChangeLog
gas/messages.c

index 98d8b1f..2e099fd 100644 (file)
@@ -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
index 0b56527..f292afd 100644 (file)
 
 #include "as.h"
 
+#ifndef __STDC__
+#ifndef NO_STDARG
+#define NO_STDARG
+#endif
+#endif
+
 #ifndef NO_STDARG
 #include <stdarg.h>
 #else