Loading...
stdio/FreeBSD/fscanf.c Libc-763.13 Libc-825.26
--- Libc/Libc-763.13/stdio/FreeBSD/fscanf.c
+++ Libc/Libc-825.26/stdio/FreeBSD/fscanf.c
@@ -36,6 +36,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD: src/lib/libc/stdio/fscanf.c,v 1.13 2007/01/09 00:28:06 imp Exp $");
 
+#include "xlocale_private.h"
+
 #include "namespace.h"
 #include <stdio.h>
 #include <stdarg.h>
@@ -51,8 +53,23 @@
 
 	va_start(ap, fmt);
 	FLOCKFILE(fp);
-	ret = __svfscanf(fp, fmt, ap);
+	ret = __svfscanf_l(fp, __current_locale(), fmt, ap);
 	va_end(ap);
 	FUNLOCKFILE(fp);
 	return (ret);
 }
+
+int
+fscanf_l(FILE * __restrict fp, locale_t loc, char const * __restrict fmt, ...)
+{
+	int ret;
+	va_list ap;
+
+	NORMALIZE_LOCALE(loc);
+	va_start(ap, fmt);
+	FLOCKFILE(fp);
+	ret = __svfscanf_l(fp, loc, fmt, ap);
+	va_end(ap);
+	FUNLOCKFILE(fp);
+	return (ret);
+}