diff options
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/locale.h | 6 | ||||
-rw-r--r-- | newlib/libc/locale/locale.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/include/locale.h b/newlib/libc/include/locale.h index ebe1422..fa5c270 100644 --- a/newlib/libc/include/locale.h +++ b/newlib/libc/include/locale.h @@ -43,6 +43,12 @@ struct lconv char n_sep_by_space; char p_sign_posn; char n_sign_posn; + char int_n_cs_precedes; + char int_n_sep_by_space; + char int_n_sign_posn; + char int_p_cs_precedes; + char int_p_sep_by_space; + char int_p_sign_posn; }; #ifndef _REENT_ONLY diff --git a/newlib/libc/locale/locale.c b/newlib/libc/locale/locale.c index 6349bd9..3b2ffb9 100644 --- a/newlib/libc/locale/locale.c +++ b/newlib/libc/locale/locale.c @@ -160,6 +160,8 @@ static _CONST struct lconv lconv = ".", "", "", "", "", "", "", "", "", "", CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX, + CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX, + CHAR_MAX, CHAR_MAX }; #ifdef _MB_CAPABLE |