aboutsummaryrefslogtreecommitdiff
path: root/gcc/protoize.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-06-16 19:14:22 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-06-16 19:14:22 +0000
commit9a23858679e48d0b7568e25ebd2a5c92ed250b31 (patch)
tree03f4154c601d605201e4a3d1cc5920b07d982fde /gcc/protoize.c
parent786a48dd970b9fb5825bd092278989b0cecacbc7 (diff)
downloadgcc-9a23858679e48d0b7568e25ebd2a5c92ed250b31.zip
gcc-9a23858679e48d0b7568e25ebd2a5c92ed250b31.tar.gz
gcc-9a23858679e48d0b7568e25ebd2a5c92ed250b31.tar.bz2
builtin-attrs.def, [...]: Don't use macros from "symcat.h", instead rely on ISO C.
* 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. From-SVN: r68035
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r--gcc/protoize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c
index a83add6..54fdba5 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,