defined(__STDC__) / __STDC__==1 changes recommended by gnu
This commit is contained in:
parent
f3b36ecb30
commit
4959cb7bf9
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -22,6 +22,12 @@
|
|||
|
||||
#include "as.h"
|
||||
|
||||
#ifndef __STDC__
|
||||
#ifndef NO_STDARG
|
||||
#define NO_STDARG
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef NO_STDARG
|
||||
#include <stdarg.h>
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue