diff --git a/libc/wctype/iswcntrl.cpp b/libc/wctype/iswcntrl.cpp index 358d1ff9..f2de04da 100644 --- a/libc/wctype/iswcntrl.cpp +++ b/libc/wctype/iswcntrl.cpp @@ -26,5 +26,5 @@ extern "C" int iswcntrl(wint_t c) { - return c < 32; + return /*0 <= c [c is unsigned] && */ c < 32; }