defined(__STDC__) / __STDC__==1 changes recommended by gnu

This commit is contained in:
Ken Raeburn 1992-09-25 21:14:46 +00:00
parent f3b36ecb30
commit 4959cb7bf9
2 changed files with 11 additions and 0 deletions

View 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

View File

@ -22,6 +22,12 @@
#include "as.h"
#ifndef __STDC__
#ifndef NO_STDARG
#define NO_STDARG
#endif
#endif
#ifndef NO_STDARG
#include <stdarg.h>
#else