summaryrefslogtreecommitdiff
path: root/gcc/fixinc/fixinc.ptx
diff options
context:
space:
mode:
authorJason Merrill <jason@yorick.cygnus.com>2000-01-14 01:46:49 +0000
committerJason Merrill <jason@gcc.gnu.org>2000-01-13 20:46:49 -0500
commit91baa9184150434e144761ba1720a048c4b515f0 (patch)
treeaa3756fd98d274e15267c37b66a0af86f53a19a2 /gcc/fixinc/fixinc.ptx
parent17ca0d816a1c9d73e09a119937b0b0ff2e88d41d (diff)
downloadgcc-91baa9184150434e144761ba1720a048c4b515f0.tar.gz
fixincludes (va_list): Use __not_va_list__ for the dummy.
* fixincludes (va_list): Use __not_va_list__ for the dummy. * fixinc/*: Likewise. From-SVN: r31401
Diffstat (limited to 'gcc/fixinc/fixinc.ptx')
-rw-r--r--gcc/fixinc/fixinc.ptx6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fixinc/fixinc.ptx b/gcc/fixinc/fixinc.ptx
index c205e217d36..88518bebbcb 100644
--- a/gcc/fixinc/fixinc.ptx
+++ b/gcc/fixinc/fixinc.ptx
@@ -96,13 +96,13 @@ if [ -r ${LIB}/$file ]; then
# Use __gnuc_va_list in arg types in place of va_list.
# On 386BSD use __gnuc_va_list instead of _VA_LIST_. We're hoping the
# trailing parentheses and semicolon save all other systems from this.
- # Define __va_list__ (something harmless and unused) instead of va_list.
+ # Define __not_va_list__ (something harmless and unused) instead of va_list.
# Don't claim to have defined va_list.
sed -e 's@ va_list @ __gnuc_va_list @' \
-e 's@ va_list)@ __gnuc_va_list)@' \
-e 's@ _VA_LIST_));@ __gnuc_va_list));@' \
- -e 's@ va_list@ __va_list__@' \
- -e 's@\*va_list@*__va_list__@' \
+ -e 's@ va_list@ __not_va_list__@' \
+ -e 's@\*va_list@*__not_va_list__@' \
-e 's@ __va_list)@ __gnuc_va_list)@' \
-e 's@_NEED___VA_LIST@_NEED___Va_LIST@' \
-e 's@VA_LIST@DUMMY_VA_LIST@' \