aboutsummaryrefslogtreecommitdiff
path: root/src/string/wcscpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/wcscpy.c')
-rw-r--r--src/string/wcscpy.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/wcscpy.c b/src/string/wcscpy.c
index 625bf53d..2774fb7f 100644
--- a/src/string/wcscpy.c
+++ b/src/string/wcscpy.c
@@ -6,3 +6,11 @@ wchar_t *wcscpy(wchar_t *restrict d, const wchar_t *restrict s)
while ((*d++ = *s++));
return a;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif