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