summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-03 11:41:44 +0100
committerPeter S. Mazinger <ps.m@gmx.net>2011-03-03 18:22:51 +0100
commitb526c7807f0a54054c4b12edef58b521fe0ab4c7 (patch)
tree10c4346709abdc32ce599daea91b5e33dc9268d7 /libc/string
parenta37f5fd55332b72c7e8ca5436ab6cd04617985a7 (diff)
strcpy: remove unneeded includes from the generic version
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/generic/strcpy.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/string/generic/strcpy.c b/libc/string/generic/strcpy.c
index 4d070531f..ace6dea58 100644
--- a/libc/string/generic/strcpy.c
+++ b/libc/string/generic/strcpy.c
@@ -17,9 +17,6 @@
02111-1307 USA. */
#include <string.h>
-#include <stddef.h>
-
-#include "memcopy.h"
/* Copy SRC to DEST. */
char *strcpy(char *dest, const char *src)