Fixing an issue in the CoreLib

dev
Nigel Barink 2023-10-27 18:04:09 +02:00
parent 04470edcc6
commit 64c87a2a58
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ int isprint (int ch){
return 1;
if(isspace(ch))
return 1;
return 0;
}