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