1 // commit: d8e8f1464cb02d6a62f01c7153ca4d7b0cd5c5e6 2013-11-11 2 // iswspace(0) should be 0 3 #include <wctype.h> 4 #include "test.h" 5 main(void)6 int main(void) 7 { 8 if (iswspace(0)!=0) 9 t_error("iswspace(0) returned non-zero\n"); 10 return t_status; 11 } 12