]> git.saurik.com Git - apple/libc.git/blobdiff - stdio/FreeBSD/getwc.c
Libc-825.24.tar.gz
[apple/libc.git] / stdio / FreeBSD / getwc.c
index 34a7de32584f00544565c5a3c82c584b6d9383b6..0128a77808354bead8094404d450419466cb5e07 100644 (file)
@@ -27,6 +27,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD: src/lib/libc/stdio/getwc.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>
@@ -44,5 +46,13 @@ wint_t
 getwc(FILE *fp)
 {
 
-       return (fgetwc(fp));
+       return (fgetwc_l(fp, __current_locale()));
+}
+
+wint_t
+getwc_l(FILE *fp, locale_t loc)
+{
+
+       /* no need to call NORMALIZE_LOCALE(loc) because fgetwc_l will */
+       return (fgetwc_l(fp, loc));
 }