diff options
Diffstat (limited to 'src/string/strcasecmp.c')
-rw-r--r-- | src/string/strcasecmp.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/strcasecmp.c b/src/string/strcasecmp.c index 002c6aa1..4973ebea 100644 --- a/src/string/strcasecmp.c +++ b/src/string/strcasecmp.c @@ -14,3 +14,11 @@ int __strcasecmp_l(const char *l, const char *r, locale_t loc) } weak_alias(__strcasecmp_l, strcasecmp_l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |