]> git.saurik.com Git - apple/libc.git/blobdiff - stdio/FreeBSD/putwc.c
Libc-1244.50.9.tar.gz
[apple/libc.git] / stdio / FreeBSD / putwc.c
index a33f78f68551d13207746017626fb950acb5389d..e8543091ffc33ccab3d8f54e34ba73c66d0b3086 100644 (file)
@@ -25,7 +25,9 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/lib/libc/stdio/putwc.c,v 1.2 2002/09/28 07:43:44 tjr Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/stdio/putwc.c,v 1.3 2004/05/25 10:42:52 tjr Exp $");
+
+#include "xlocale_private.h"
 
 #include "namespace.h"
 #include <stdio.h>
@@ -34,6 +36,8 @@ __FBSDID("$FreeBSD: src/lib/libc/stdio/putwc.c,v 1.2 2002/09/28 07:43:44 tjr Exp
 #include "libc_private.h"
 #include "local.h"
 
+#undef putwc
+
 /*
  * Synonym for fputwc(). The only difference is that putwc(), if it is a
  * macro, may evaluate `fp' more than once.
@@ -42,5 +46,13 @@ wint_t
 putwc(wchar_t wc, FILE *fp)
 {
 
-       return (fputwc(wc, fp));
+       return (fputwc_l(wc, fp, __current_locale()));
+}
+
+wint_t
+putwc_l(wchar_t wc, FILE *fp, locale_t loc)
+{
+
+       /* no need to call NORMALIZE_LOCALE(loc) because fputwc_l will */
+       return (fputwc_l(wc, fp, loc));
 }