diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-16 02:05:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-16 02:05:36 +0000 |
commit | 0274d73c41a807eeb10866f5211d727a5bc51b5c (patch) | |
tree | 4bbb9afc7877cf8d7a2de52036233d557485c422 /locale/C-name.c | |
parent | c2e131128be262e38f086465f3561c2faeaaef78 (diff) | |
download | glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.tar glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.tar.gz glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.tar.bz2 glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.zip |
* iconv/gconv_conf.c: Convert GCC extension initializer syntax to C99.
* iconvdata/gap.awk: Likewise.
* iconvdata/gen-8bit-gap-1.sh: Likewise.
* iconvdata/gen-8bit-gap.sh: Likewise.
* locale/C-address.c: Likewise.
* locale/C-collate.c: Likewise.
* locale/C-ctype.c: Likewise.
* locale/C-identification.c: Likewise.
* locale/C-measurement.c: Likewise.
* locale/C-messages.c: Likewise.
* locale/C-monetary.c: Likewise.
* locale/C-name.c: Likewise.
* locale/C-numeric.c: Likewise.
* locale/C-paper.c: Likewise.
* locale/C-telephone.c: Likewise.
* locale/C-time.c: Likewise.
* nscd/connections.c: Likewise.
* nscd/grpcache.c: Likewise.
* nscd/hstcache.c: Likewise.
* nscd/pwdcache.c: Likewise.
* stdio-common/vfprintf.c: Likewise.
* stdlib/random.c: Likewise.
* sysdeps/generic/siglist.c: Likewise.
* sysdeps/i386/fpu/bits/mathinline.h: Likewise.
* sysdeps/ieee754/bits/nan.h: Likewise.
* sysdeps/posix/sprofil.c: Likewise.
* sysdeps/unix/sysv/linux/sleep.c: Likewise.
* sysdeps/unix/sysv/linux/sysctl.c: Likewise.
* sysdeps/unix/sysv/linux/usleep.c: Likewise.
Diffstat (limited to 'locale/C-name.c')
-rw-r--r-- | locale/C-name.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/locale/C-name.c b/locale/C-name.c index bea6e856e6..65033d6751 100644 --- a/locale/C-name.c +++ b/locale/C-name.c @@ -33,12 +33,12 @@ const struct locale_data _nl_C_LC_NAME attribute_hidden = 0, 7, { - { string: "%p%t%g%t%m%t%f" }, - { string: "" }, - { string: "" }, - { string: "" }, - { string: "" }, - { string: "" }, - { string: _nl_C_codeset } + { .string = "%p%t%g%t%m%t%f" }, + { .string = "" }, + { .string = "" }, + { .string = "" }, + { .string = "" }, + { .string = "" }, + { .string = _nl_C_codeset } } }; |