1 --- fscanf.c.bsdnew 2009-11-11 13:33:09.000000000 -0800
2 +++ fscanf.c 2009-11-11 13:33:09.000000000 -0800
3 @@ -36,6 +36,8 @@ static char sccsid[] = "@(#)fscanf.c 8.1
5 __FBSDID("$FreeBSD: src/lib/libc/stdio/fscanf.c,v 1.13 2007/01/09 00:28:06 imp Exp $");
7 +#include "xlocale_private.h"
12 @@ -51,7 +53,22 @@ fscanf(FILE * __restrict fp, char const
16 - ret = __svfscanf(fp, fmt, ap);
17 + ret = __svfscanf_l(fp, __current_locale(), fmt, ap);
24 +fscanf_l(FILE * __restrict fp, locale_t loc, char const * __restrict fmt, ...)
29 + NORMALIZE_LOCALE(loc);
32 + ret = __svfscanf_l(fp, loc, fmt, ap);