]> git.saurik.com Git - apple/libc.git/blobdiff - stdio/FreeBSD/putwchar.c
Libc-1353.11.2.tar.gz
[apple/libc.git] / stdio / FreeBSD / putwchar.c
index b983995d3e82d93858194ef6017610aa7c22f338..bc3ef1f7d07a18a7a19ea76b89b40cbde4286c98 100644 (file)
@@ -27,6 +27,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD: src/lib/libc/stdio/putwchar.c,v 1.3 2004/05/25 10:42:52 tjr Exp $");
 
+#include "xlocale_private.h"
+
 #include "namespace.h"
 #include <stdio.h>
 #include <wchar.h>
@@ -43,5 +45,13 @@ wint_t
 putwchar(wchar_t wc)
 {
 
-       return (fputwc(wc, stdout));
+       return (fputwc_l(wc, stdout, __current_locale()));
+}
+
+wint_t
+putwchar_l(wchar_t wc, locale_t loc)
+{
+
+       /* no need to call NORMALIZE_LOCALE(loc) because fputwc_l will */
+       return (fputwc_l(wc, stdout, loc));
 }