summaryrefslogtreecommitdiff
path: root/libc/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strcat.c')
-rw-r--r--libc/string/strcat.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/string/strcat.c b/libc/string/strcat.c
deleted file mode 100644
index 78a9ec6..0000000
--- a/libc/string/strcat.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <string.h>
-
-char *strcat(char *s1, const char *s2) {
- strcpy(s1 + strlen(s1), s2);
- return s1;
-}