]> git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/getwchar.c.patch
Libc-498.1.5.tar.gz
[apple/libc.git] / stdio / FreeBSD / getwchar.c.patch
1 --- getwchar.c.orig 2004-11-25 11:38:35.000000000 -0800
2 +++ getwchar.c 2005-02-23 17:30:01.000000000 -0800
3 @@ -27,6 +27,8 @@
4 #include <sys/cdefs.h>
5 __FBSDID("$FreeBSD: src/lib/libc/stdio/getwchar.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 @@ -43,5 +45,13 @@
13 getwchar(void)
14 {
15
16 - return (fgetwc(stdin));
17 + return (fgetwc_l(stdin, __current_locale()));
18 +}
19 +
20 +wint_t
21 +getwchar_l(locale_t loc)
22 +{
23 +
24 + /* no need to call NORMALIZE_LOCALE(loc) because fgetwc_l will */
25 + return (fgetwc_l(stdin, loc));
26 }