aboutsummaryrefslogtreecommitdiff
path: root/string/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strcpy.c')
-rw-r--r--string/strcpy.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/string/strcpy.c b/string/strcpy.c
index f136916..caa234a 100644
--- a/string/strcpy.c
+++ b/string/strcpy.c
@@ -17,15 +17,12 @@
#include <stddef.h>
#include <string.h>
-#include <memcopy.h>
#undef strcpy
/* Copy SRC to DEST. */
char *
-strcpy (dest, src)
- char *dest;
- const char *src;
+strcpy (char *dest, const char *src)
{
char c;
char *s = (char *) src;