]> git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/putwc.c.patch
Libc-763.11.tar.gz
[apple/libc.git] / stdio / FreeBSD / putwc.c.patch
1 --- putwc.c.orig 2004-11-25 11:38:35.000000000 -0800
2 +++ putwc.c 2005-02-23 17:32:05.000000000 -0800
3 @@ -27,6 +27,8 @@
4 #include <sys/cdefs.h>
5 __FBSDID("$FreeBSD: src/lib/libc/stdio/putwc.c,v 1.3 2004/05/25 10:42:52 tjr Exp $");
6
7 +#include "xlocale_private.h"
8 +
9 #include "namespace.h"
10 #include <stdio.h>
11 #include <wchar.h>
12 @@ -44,5 +46,13 @@
13 putwc(wchar_t wc, FILE *fp)
14 {
15
16 - return (fputwc(wc, fp));
17 + return (fputwc_l(wc, fp, __current_locale()));
18 +}
19 +
20 +wint_t
21 +putwc_l(wchar_t wc, FILE *fp, locale_t loc)
22 +{
23 +
24 + /* no need to call NORMALIZE_LOCALE(loc) because fputwc_l will */
25 + return (fputwc_l(wc, fp, loc));
26 }