diff options
Diffstat (limited to 'locale/C-monetary.c')
-rw-r--r-- | locale/C-monetary.c | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/locale/C-monetary.c b/locale/C-monetary.c index 542e5c30d1..d81dbf812d 100644 --- a/locale/C-monetary.c +++ b/locale/C-monetary.c @@ -19,6 +19,14 @@ Boston, MA 02111-1307, USA. */ #include "localeinfo.h" +/* This table's entries are taken from POSIX.2 Table 2-9 + ``LC_MONETARY Category Definition in the POSIX Locale''. */ +#ifdef __CHAR_UNSIGNED__ +static const char not_available[] = "\377"; +#else +static const char not_available[] = "\177"; +#endif + const struct locale_data _nl_C_LC_MONETARY = { _nl_C_name, @@ -27,18 +35,18 @@ const struct locale_data _nl_C_LC_MONETARY = { { string: "" }, { string: "" }, - { string: "." }, { string: "" }, - { string: "\177" }, + { string: "" }, + { string: not_available }, { string: "" }, { string: "" }, - { string: "\177" }, - { string: "\177" }, - { string: "\177" }, - { string: "\177" }, - { string: "\177" }, - { string: "\177" }, - { string: "\177" }, - { string: "\177" } + { string: not_available }, + { string: not_available }, + { string: not_available }, + { string: not_available }, + { string: not_available }, + { string: not_available }, + { string: not_available }, + { string: not_available } } }; |