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 /wcsmbs | |
parent | 89126f58fdbdc03ac61da7f1a0f2db47dfd8d9ef (diff) | |
download | glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.tar.gz glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.tar.xz glibc-8f26bde3f2dde319aa59db5a9ff383a42717e5b3.zip |
* wcsmbs/bits/wchar2.h (__vfwprintf_chk, __vwprintf_chk): Use
__gnuc_va_list rather than _G_va_list.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/bits/wchar2.h | 4 |
1 files changed, 2 insertions, 2 deletions
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__) |