2010-03-03 15:27:30 +01:00
|
|
|
/* strcat() Author: Kees J. Bot */
|
|
|
|
/* 1 Jan 1994 */
|
|
|
|
|
|
|
|
/* char *strcat(char *s1, const char *s2) */
|
|
|
|
/* Append string s2 to s1. */
|
|
|
|
/* */
|
2010-08-17 18:44:07 +02:00
|
|
|
#include <machine/asm.h>
|
|
|
|
|
|
|
|
ENTRY(strcat)
|
2010-03-03 15:27:30 +01:00
|
|
|
movl $-1, %edx /* Unlimited length */
|
2010-08-17 18:44:07 +02:00
|
|
|
jmp _C_LABEL(_strncat) /* Common code */
|