fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / string / strcpy.c
index 2883e93..6668a12 100644 (file)
@@ -1,7 +1,5 @@
 #include <string.h>
 
-char *__stpcpy(char *, const char *);
-
 char *strcpy(char *restrict dest, const char *restrict src)
 {
        __stpcpy(dest, src);