diff options
Diffstat (limited to 'string/strcpy.c')
-rw-r--r-- | string/strcpy.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/string/strcpy.c b/string/strcpy.c index f136916437..caa234a691 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; |