summaryrefslogtreecommitdiff
path: root/src/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strcat.c')
-rw-r--r--src/string/strcat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/strcat.c b/src/string/strcat.c
index 29fdb611..33f749b1 100644
--- a/src/string/strcat.c
+++ b/src/string/strcat.c
@@ -1,6 +1,6 @@
#include <string.h>
-char *strcat(char *dest, const char *src)
+char *strcat(char *restrict dest, const char *restrict src)
{
strcpy(dest + strlen(dest), src);
return dest;