xref: /csrg-svn/sys/pmax/stand/libsa/strcat.c (revision 63224)
156833Sralph /*-
2*63224Sbostic  * Copyright (c) 1992, 1993
3*63224Sbostic  *	The Regents of the University of California.  All rights reserved.
456833Sralph  *
556833Sralph  * This code is derived from software contributed to Berkeley by
656833Sralph  * Ralph Campbell.
756833Sralph  *
856833Sralph  * %sccs.include.redist.c%
956833Sralph  *
10*63224Sbostic  *	@(#)strcat.c	8.1 (Berkeley) 06/10/93
1156833Sralph  */
1256833Sralph 
1356833Sralph #include <pmax/stand/dec_prom.h>
1456833Sralph 
1556833Sralph char *
strcat(s1,s2)1656833Sralph strcat(s1, s2)
1756833Sralph 	char *s1, *s2;
1856833Sralph {
1956833Sralph 	return (callv->strcat(s1, s2));
2056833Sralph }
21