diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-12-22 20:10:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-12-22 20:10:10 +0000 |
commit | a334319f6530564d22e775935d9c91663623a1b4 (patch) | |
tree | b5877475619e4c938e98757d518bb1e9cbead751 /iconvdata/ibm943.c | |
parent | 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff) | |
download | glibc-a334319f6530564d22e775935d9c91663623a1b4.tar glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.gz glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.bz2 glibc-a334319f6530564d22e775935d9c91663623a1b4.zip |
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'iconvdata/ibm943.c')
-rw-r--r-- | iconvdata/ibm943.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/iconvdata/ibm943.c b/iconvdata/ibm943.c index 119bb1f4b9..daeac1d8b2 100644 --- a/iconvdata/ibm943.c +++ b/iconvdata/ibm943.c @@ -95,10 +95,16 @@ } \ else \ { \ - if (res == 0xa5) \ + if (res == 0x1c) \ + res = 0x1a; \ + else if (res == 0x7f) \ + res = 0x1c; \ + else if (res == 0xa5) \ res = 0x5c; \ else if (res == 0x203e) \ res = 0x7e; \ + else if (res == 0x1a) \ + res = 0x7f; \ put32 (outptr, res); \ outptr += 4; \ inptr++; \ @@ -112,10 +118,16 @@ uint32_t res = __ibm943sb_to_ucs4[c]; \ if (res == 0 && c != 0) \ return WEOF; \ - if (res == 0xa5) \ + if (res == 0x1c) \ + res = 0x1a; \ + else if (res == 0x7f) \ + res = 0x1c; \ + else if (res == 0xa5) \ res = 0x5c; \ else if (res == 0x203e) \ res = 0x7e; \ + else if (res == 0x1a) \ + res = 0x7f; \ return res; \ } #include <iconv/loop.c> |