diff options
author | ache <ache@FreeBSD.org> | 2001-03-03 21:03:15 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-03-03 21:03:15 +0000 |
commit | 3859aee05f20c077858544578d64cb8bb70ffa2e (patch) | |
tree | 02da17aecf620dd91cc3c0bdf21ef784de0304c6 /lib | |
parent | c67bf2f980bccab4500f3bf012a947e9be27483a (diff) | |
download | FreeBSD-src-3859aee05f20c077858544578d64cb8bb70ffa2e.zip FreeBSD-src-3859aee05f20c077858544578d64cb8bb70ffa2e.tar.gz |
Change mon_decimal_point from "." to "" (N/A>) as it is specified by POSIX for
POSIX locale.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/locale/lmonetary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/locale/lmonetary.c b/lib/libc/locale/lmonetary.c index 7ecfba5..4ddc491 100644 --- a/lib/libc/locale/lmonetary.c +++ b/lib/libc/locale/lmonetary.c @@ -41,7 +41,7 @@ static char numempty[] = { CHAR_MAX, '\0'}; static const struct lc_monetary_T _C_monetary_locale = { empty , /* int_curr_symbol */ empty , /* currency_symbol */ - "." , /* mon_decimal_point */ + empty , /* mon_decimal_point */ empty , /* mon_thousands_sep */ numempty , /* mon_grouping */ empty , /* positive_sign */ |