diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-16 19:14:22 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-16 19:14:22 +0000 |
commit | 18e431559a1b7896690607a5c2e328d11788749a (patch) | |
tree | 03f4154c601d605201e4a3d1cc5920b07d982fde /gcc/protoize.c | |
parent | 6169854cd4d73496795b0be52f0b11f3174e21dc (diff) | |
download | gcc-18e431559a1b7896690607a5c2e328d11788749a.tar.gz |
* builtin-attrs.def, builtin-attrs.def, builtins.c, cpplex.c,
cpplib.c, gencheck.c, gengenrtl.c, machmode.def, protoize.c: Don't
use macros from "symcat.h", instead rely on ISO C.
* system.h: Don't include "symcat.h".
* configure.in (AC_C_STRINGIZE): Delete.
* config.in, configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68035 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index a83add6db72..54fdba5382c 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -229,7 +229,7 @@ static const char * const other_var_style = "stdarg"; static const char * const other_var_style = "varargs"; /* Note that this is a string containing the expansion of va_alist. But in `main' we discard all but the first token. */ -static const char *varargs_style_indicator = STRINGX (va_alist); +static const char *varargs_style_indicator = #va_alist; #endif /* !defined (UNPROTOIZE) */ /* The following two types are used to create hash tables. In this program, |