summaryrefslogtreecommitdiff
path: root/src/string/wcsncpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/wcsncpy.c')
-rw-r--r--src/string/wcsncpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/wcsncpy.c b/src/string/wcsncpy.c
index 714eeb64..4bede04d 100644
--- a/src/string/wcsncpy.c
+++ b/src/string/wcsncpy.c
@@ -1,6 +1,6 @@
#include <wchar.h>
-wchar_t *wcsncpy(wchar_t *d, const wchar_t *s, size_t n)
+wchar_t *wcsncpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n)
{
wchar_t *a = d;
while (n && *s) n--, *d++ = *s++;