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