summaryrefslogtreecommitdiff
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, 0 insertions, 2 deletions
diff --git a/src/string/strcpy.c b/src/string/strcpy.c
index 2883e930..6668a129 100644
--- a/src/string/strcpy.c
+++ b/src/string/strcpy.c
@@ -1,7 +1,5 @@
#include <string.h>
-char *__stpcpy(char *, const char *);
-
char *strcpy(char *restrict dest, const char *restrict src)
{
__stpcpy(dest, src);