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