Loading...
stdio/FreeBSD/putwc.c Libc-1725.40.4 Libc-391
--- Libc/Libc-1725.40.4/stdio/FreeBSD/putwc.c
+++ Libc/Libc-391/stdio/FreeBSD/putwc.c
@@ -27,8 +27,6 @@
 #include <sys/cdefs.h>
 __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>
 #include <wchar.h>
@@ -46,13 +44,5 @@
 putwc(wchar_t wc, FILE *fp)
 {
 
-	return (fputwc_l(wc, fp, __current_locale()));
+	return (fputwc(wc, fp));
 }
-
-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));
-}