diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-19 12:46:50 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-19 12:46:50 +0200 |
commit | 1681bed6c83fc8911dc6790c5f043a47db2b8939 (patch) | |
tree | b367fb3d0e83d9b095ff922a137edee01668287f /gcc/protoize.c | |
parent | 676fceebc13d58097ff034f16fb08613ffbfe4ff (diff) | |
download | gcc-1681bed6c83fc8911dc6790c5f043a47db2b8939.zip gcc-1681bed6c83fc8911dc6790c5f043a47db2b8939.tar.gz gcc-1681bed6c83fc8911dc6790c5f043a47db2b8939.tar.bz2 |
* protoize.c: Fix breakage from last patch.
From-SVN: r68189
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index bcd0a7f..e89aa73 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -1,6 +1,6 @@ /* Protoize program - Original version by Ron Guilmette (rfg@segfault.us.com). Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -227,9 +227,7 @@ struct string_list *exclude_list; static const char * const other_var_style = "stdarg"; #else /* !defined (UNPROTOIZE) */ 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 = #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, |