=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/wchar.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- src/include/wchar.h 2011/04/06 11:39:42 1.12 +++ src/include/wchar.h 2011/04/24 07:46:58 1.13 @@ -1,4 +1,4 @@ -/* $OpenBSD: wchar.h,v 1.12 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: wchar.h,v 1.13 2011/04/24 07:46:58 stsp Exp $ */ /* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */ /*- @@ -171,6 +171,14 @@ wint_t putwchar(wchar_t); int fwide(FILE *, int); + +int fwprintf(FILE * __restrict, const wchar_t * __restrict, ...); +int swprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict, ...); +int vfwprintf(FILE * __restrict, const wchar_t * __restrict, __va_list); +int vswprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict, + __va_list); +int vwprintf(const wchar_t * __restrict, __va_list); +int wprintf(const wchar_t * __restrict, ...); #define getwc(f) fgetwc(f) #define getwchar() getwc(stdin)