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