projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3b36ec
)
defined(__STDC__) / __STDC__==1 changes recommended by gnu
author
Ken Raeburn
<raeburn@cygnus>
Fri, 25 Sep 1992 21:14:46 +0000
(21:14 +0000)
committer
Ken Raeburn
<raeburn@cygnus>
Fri, 25 Sep 1992 21:14:46 +0000
(21:14 +0000)
gas/ChangeLog
patch
|
blob
|
history
gas/messages.c
patch
|
blob
|
history
diff --git
a/gas/ChangeLog
b/gas/ChangeLog
index 98d8b1fc2f93ad24e4e0708911a1461982aa5e20..2e099fdcbee0ef18c62ad6bddb712bb9e160477d 100644
(file)
--- 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 0b5652741e183659d64b2e0ceba287f722b7b777..f292afdb289c322e7a664990db085b97757dfad6 100644
(file)
--- 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