- Implement __lconv_init

svn path=/trunk/; revision=38143
This commit is contained in:
Dmitry Chapyshev 2008-12-17 10:24:13 +00:00
parent 99cdd75fa7
commit 84a5eed60e

View file

@ -802,7 +802,15 @@ void *_Gettnames(void)
*/
void __lconv_init(void)
{
FIXME(" stub\n");
char Char = (char) UCHAR_MAX;
TRACE("__lconv_init()\n");
_lconv.int_frac_digits = Char;
_lconv.frac_digits = Char;
_lconv.p_sep_by_space = _lconv.n_sep_by_space = Char;
_lconv.p_cs_precedes = _lconv.n_cs_precedes = Char;
_lconv.p_sign_posn = _lconv.n_sign_posn = Char;
}