about summary refs log tree commit diff
path: root/src/string/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strcpy.c')
-rw-r--r--src/string/strcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/strcpy.c b/src/string/strcpy.c
index 7675e9ce..f7e3ba38 100644
--- a/src/string/strcpy.c
+++ b/src/string/strcpy.c
@@ -2,7 +2,7 @@
 
 char *__stpcpy(char *, const char *);
 
-char *strcpy(char *dest, const char *src)
+char *strcpy(char *restrict dest, const char *restrict src)
 {
 #if 1
 	__stpcpy(dest, src);