about summary refs log tree commit diff
path: root/src/string/wcscat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/wcscat.c')
-rw-r--r--src/string/wcscat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/wcscat.c b/src/string/wcscat.c
index 946f16e2..d4f00ebd 100644
--- a/src/string/wcscat.c
+++ b/src/string/wcscat.c
@@ -1,6 +1,6 @@
 #include <wchar.h>
 
-wchar_t *wcscat(wchar_t *dest, const wchar_t *src)
+wchar_t *wcscat(wchar_t *restrict dest, const wchar_t *restrict src)
 {
 	wcscpy(dest + wcslen(dest), src);
 	return dest;