diff options
author | Ken Raeburn <raeburn@cygnus> | 1992-09-25 21:14:46 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1992-09-25 21:14:46 +0000 |
commit | 4959cb7bf9bafb6b8db32f0013709874ddc85104 (patch) | |
tree | 3e1e72221363f5d0794e210ad6950f92848e385e /gas/messages.c | |
parent | f3b36ecb30e9201c3592ecc00ef0c02736892666 (diff) | |
download | gdb-4959cb7bf9bafb6b8db32f0013709874ddc85104.zip gdb-4959cb7bf9bafb6b8db32f0013709874ddc85104.tar.gz gdb-4959cb7bf9bafb6b8db32f0013709874ddc85104.tar.bz2 |
defined(__STDC__) / __STDC__==1 changes recommended by gnu
Diffstat (limited to 'gas/messages.c')
-rw-r--r-- | gas/messages.c | 6 |
1 files changed, 6 insertions, 0 deletions
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 |