aboutsummaryrefslogtreecommitdiff
path: root/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strcat.c')
-rw-r--r--string/strcat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/string/strcat.c b/string/strcat.c
index bb7c0a9..2cbe8b3 100644
--- a/string/strcat.c
+++ b/string/strcat.c
@@ -16,15 +16,12 @@
<http://www.gnu.org/licenses/>. */
#include <string.h>
-#include <memcopy.h>
#undef strcat
/* Append SRC on the end of DEST. */
char *
-strcat (dest, src)
- char *dest;
- const char *src;
+strcat (char *dest, const char *src)
{
char *s1 = dest;
const char *s2 = src;