summaryrefslogtreecommitdiff
path: root/src/ctype
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype')
-rw-r--r--src/ctype/iswlower.c2
-rw-r--r--src/ctype/towctrans.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/ctype/iswlower.c b/src/ctype/iswlower.c
index c754fb95..79df44a3 100644
--- a/src/ctype/iswlower.c
+++ b/src/ctype/iswlower.c
@@ -3,7 +3,7 @@
int iswlower(wint_t wc)
{
- return towupper(wc) != wc || wc == 0xdf;
+ return towupper(wc) != wc;
}
int __iswlower_l(wint_t c, locale_t l)
diff --git a/src/ctype/towctrans.c b/src/ctype/towctrans.c
index 5e0889b1..6af61875 100644
--- a/src/ctype/towctrans.c
+++ b/src/ctype/towctrans.c
@@ -151,7 +151,6 @@ static const unsigned short pairs[][2] = {
{ 0x03f7, 0x03f8 },
{ 0x03fa, 0x03fb },
{ 0x1e60, 0x1e9b },
- { 0xdf, 0xdf },
{ 0x1e9e, 0xdf },
{ 0x1f59, 0x1f51 },