diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-07-22 08:58:07 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-07-22 08:58:07 +0000 |
commit | 8f26bde3f2dde319aa59db5a9ff383a42717e5b3 (patch) | |
tree | 135ce346f0f9596c008f192946b808f7d956b04d | |
parent | 89126f58fdbdc03ac61da7f1a0f2db47dfd8d9ef (diff) | |
download | glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.tar glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.tar.gz glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.tar.bz2 glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.zip |
* wcsmbs/bits/wchar2.h (__vfwprintf_chk, __vwprintf_chk): Use
__gnuc_va_list rather than _G_va_list.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | wcsmbs/bits/wchar2.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-07-22 Jakub Jelinek <jakub@redhat.com> + + * wcsmbs/bits/wchar2.h (__vfwprintf_chk, __vwprintf_chk): Use + __gnuc_va_list rather than _G_va_list. + 2005-07-22 Roland McGrath <roland@redhat.com> [BZ #869] diff --git a/wcsmbs/bits/wchar2.h b/wcsmbs/bits/wchar2.h index 8dd5b88014..29bfad0110 100644 --- a/wcsmbs/bits/wchar2.h +++ b/wcsmbs/bits/wchar2.h @@ -236,9 +236,9 @@ extern int __wprintf_chk (int __flag, __const wchar_t *__restrict __format, ...); extern int __vfwprintf_chk (FILE *__restrict __stream, int __flag, __const wchar_t *__restrict __format, - _G_va_list __ap); + __gnuc_va_list __ap); extern int __vwprintf_chk (int __flag, __const wchar_t *__restrict __format, - _G_va_list __ap); + __gnuc_va_list __ap); # define wprintf(...) \ __wprintf_chk (__USE_FORTIFY_LEVEL - 1, __VA_ARGS__) |