Subversion Repositories Kolibri OS

Rev

Rev 1408 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1627 serge 1
/*	strcat()					Author: Kees J. Bot */
2
/*								1 Jan 1994 */
1408 serge 3
 
1627 serge 4
/* char *strcat(char *s1, const char *s2) */
5
/*	Append string s2 to s1. */
6
/* */
7
#include "asm.h"
1408 serge 8
 
1627 serge 9
ENTRY(strcat)
10
	movl	$-1, %edx	/* Unlimited length */
11
	jmp	_C_LABEL(_strncat) /* Common code */