aboutsummaryrefslogtreecommitdiff
path: root/src/string/wcscat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/wcscat.c')
-rw-r--r--src/string/wcscat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/wcscat.c b/src/string/wcscat.c
index d4f00ebd..fc822df0 100644
--- a/src/string/wcscat.c
+++ b/src/string/wcscat.c
@@ -5,3 +5,11 @@ wchar_t *wcscat(wchar_t *restrict dest, const wchar_t *restrict src)
wcscpy(dest + wcslen(dest), src);
return dest;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif