Loading...
--- Libc/Libc-1725.40.4/stdio/FreeBSD/getwchar.c
+++ Libc/Libc-498/stdio/FreeBSD/getwchar.c
@@ -27,8 +27,6 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/lib/libc/stdio/getwchar.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>
@@ -45,13 +43,5 @@
getwchar(void)
{
- return (fgetwc_l(stdin, __current_locale()));
+ return (fgetwc(stdin));
}
-
-wint_t
-getwchar_l(locale_t loc)
-{
-
- /* no need to call NORMALIZE_LOCALE(loc) because fgetwc_l will */
- return (fgetwc_l(stdin, loc));
-}