libc: revert isspace for isprint

This commit is contained in:
K. Lange 2018-10-11 15:30:38 +09:00
parent 532b4bd64f
commit 7d2378085c

View File

@ -1,5 +1,5 @@
#include <ctype.h>
int isprint(int c) {
return isgraph(c) || isspace(c);
return isgraph(c) || c == ' ';
}