mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Update iswcntrl(3) to current coding conventions.
This commit is contained in:
parent
cc43c96acc
commit
51f25b0b65
1 changed files with 1 additions and 1 deletions
|
@ -26,5 +26,5 @@
|
||||||
|
|
||||||
extern "C" int iswcntrl(wint_t c)
|
extern "C" int iswcntrl(wint_t c)
|
||||||
{
|
{
|
||||||
return c < 32;
|
return /*0 <= c [c is unsigned] && */ c < 32;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue