summaryrefslogtreecommitdiff
path: root/src/wchar/wcsncpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcsncpy.c')
-rw-r--r--src/wchar/wcsncpy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wchar/wcsncpy.c b/src/wchar/wcsncpy.c
index 2c595575..40537890 100644
--- a/src/wchar/wcsncpy.c
+++ b/src/wchar/wcsncpy.c
@@ -5,6 +5,7 @@
wchar_t * wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)
{
SIGNAL_SAFE(0);
+ /* TODO: overlap */
size_t i;
int nul = 0;