aboutsummaryrefslogtreecommitdiff
path: root/libc/string/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strcpy.c')
-rw-r--r--libc/string/strcpy.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libc/string/strcpy.c b/libc/string/strcpy.c
index 48eb62c..514be17 100644
--- a/libc/string/strcpy.c
+++ b/libc/string/strcpy.c
@@ -10,10 +10,8 @@
* IBM Corporation - initial implementation
*****************************************************************************/
-#include <string.h>
-
-char *
-strcpy(char *dst, const char *src)
+char *strcpy(char *dst, const char *src);
+char *strcpy(char *dst, const char *src)
{
char *ptr = dst;