diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-28 19:01:56 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-28 19:01:56 -0500 |
| commit | b297c4aaf4901f439518ca24a9da2069f011be5f (patch) | |
| tree | 7854c17ac07db1c4f786eb9820ae096ce086c99f /src/nonstd/struct_locale_t.c | |
| parent | 8ca74bf52d8bdfdda756d0d89e48621c1036baa4 (diff) | |
set up (most of) a working POSIX/C locale (missing collation)
Diffstat (limited to 'src/nonstd/struct_locale_t.c')
| -rw-r--r-- | src/nonstd/struct_locale_t.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nonstd/struct_locale_t.c b/src/nonstd/struct_locale_t.c index 1bc8e932..3479e22f 100644 --- a/src/nonstd/struct_locale_t.c +++ b/src/nonstd/struct_locale_t.c @@ -22,11 +22,11 @@ struct __locale_t { char *noexpr; } lc_messages; - char *monetary; - char *numeric; + char monetary[UCHAR_MAX]; + char numeric[UCHAR_MAX]; struct lconv mn; - char *time; + char time[UCHAR_MAX]; struct { char *abday[7]; char *day[7]; |
