diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-02 12:22:56 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-02 12:22:56 +0000 |
commit | dc71013fe722a19c14292b35dc36b215f44b8a07 (patch) | |
tree | 54dea385ac20c4e5e715d6b67b3b056c625c5ec9 /gcc/fixincludes | |
parent | 4a7ae42da2f8c637ee245da1df8f829c5cf07dae (diff) | |
download | gcc-dc71013fe722a19c14292b35dc36b215f44b8a07.tar.gz |
(stdio.h): BSDI 2.0 changed the spelling of _VA_LIST_ to
_BSD_VA_LIST_.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9295 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 02ce867a0c2..d4a08c3e0cc 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1525,6 +1525,7 @@ if [ -r ${LIB}/$file ]; then # 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@ _BSD_VA_LIST_));@ __gnuc_va_list));@' \ -e 's@ _VA_LIST_));@ __gnuc_va_list));@' \ -e 's@ va_list@ __va_list__@' \ -e 's@\*va_list@*__va_list__@' \ |