diff options
Diffstat (limited to 'src/string/wmemcpy.c')
-rw-r--r-- | src/string/wmemcpy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/wmemcpy.c b/src/string/wmemcpy.c index 52e6e6e0..80483fee 100644 --- a/src/string/wmemcpy.c +++ b/src/string/wmemcpy.c @@ -6,3 +6,11 @@ wchar_t *wmemcpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n) while (n--) *d++ = *s++; return a; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |