aboutsummaryrefslogtreecommitdiff
path: root/src/string/wcsncasecmp_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/wcsncasecmp_l.c')
-rw-r--r--src/string/wcsncasecmp_l.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/wcsncasecmp_l.c b/src/string/wcsncasecmp_l.c
index 63872481..6f6a30e5 100644
--- a/src/string/wcsncasecmp_l.c
+++ b/src/string/wcsncasecmp_l.c
@@ -4,3 +4,11 @@ int wcsncasecmp_l(const wchar_t *l, const wchar_t *r, size_t n, locale_t locale)
{
return wcsncasecmp(l, r, n);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif