NetBSD-macppc ctype needs uchars.

This commit is contained in:
rsc 2005-09-09 23:10:38 +00:00
parent 1caec48b78
commit 94d85bc000

View file

@ -1263,7 +1263,7 @@ int
cistrcmp(char *a, char *b)
{
while(*a || *b)
if(tolower(*a++) != tolower(*b++))
if(tolower((uchar)*a++) != tolower((uchar)*b++))
return -1;
return 0;