mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Implement __lconv_init
svn path=/trunk/; revision=38143
This commit is contained in:
parent
99cdd75fa7
commit
84a5eed60e
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue