1570af302Sopenharmony_ci// commit: d8e8f1464cb02d6a62f01c7153ca4d7b0cd5c5e6 2013-11-11 2570af302Sopenharmony_ci// iswspace(0) should be 0 3570af302Sopenharmony_ci#include <wctype.h> 4570af302Sopenharmony_ci#include "test.h" 5570af302Sopenharmony_ci 6570af302Sopenharmony_ciint main(void) 7570af302Sopenharmony_ci{ 8570af302Sopenharmony_ci if (iswspace(0)!=0) 9570af302Sopenharmony_ci t_error("iswspace(0) returned non-zero\n"); 10570af302Sopenharmony_ci return t_status; 11570af302Sopenharmony_ci} 12