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 /iconvdata/gap.awk | |
parent | c2e131128be262e38f086465f3561c2faeaaef78 (diff) | |
download | glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.zip glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.tar.gz glibc-0274d73c41a807eeb10866f5211d727a5bc51b5c.tar.bz2 |
* 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 'iconvdata/gap.awk')
-rw-r--r-- | iconvdata/gap.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iconvdata/gap.awk b/iconvdata/gap.awk index 583d22b..6c5ef51 100644 --- a/iconvdata/gap.awk +++ b/iconvdata/gap.awk @@ -26,7 +26,7 @@ function tonum(str) { if (last) { - printf (" { start: 0x%04x, end: 0x%04x, idx: %5d },\n", + printf (" { .start = 0x%04x, .end = 0x%04x, .idx = %5d },\n", first, last, idx); idx -= u - last - 1; } @@ -35,5 +35,5 @@ function tonum(str) last = u; } -END { printf (" { start: 0x%04x, end: 0x%04x, idx: %5d },\n", +END { printf (" { .start = 0x%04x, .end = 0x%04x, .idx = %5d },\n", first, last, idx); } |