diff options
Diffstat (limited to 'src/ctype/iswcntrl.c')
-rw-r--r-- | src/ctype/iswcntrl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/iswcntrl.c b/src/ctype/iswcntrl.c index feccfcd5..dccaefc1 100644 --- a/src/ctype/iswcntrl.c +++ b/src/ctype/iswcntrl.c @@ -14,3 +14,11 @@ int __iswcntrl_l(wint_t c, locale_t l) } weak_alias(__iswcntrl_l, iswcntrl_l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |