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