xref: /csrg-svn/sys/pmax/stand/libsa/strcpy.c (revision 63224)
156834Sralph /*-
2*63224Sbostic  * Copyright (c) 1992, 1993
3*63224Sbostic  *	The Regents of the University of California.  All rights reserved.
456834Sralph  *
556834Sralph  * This code is derived from software contributed to Berkeley by
656834Sralph  * Ralph Campbell.
756834Sralph  *
856834Sralph  * %sccs.include.redist.c%
956834Sralph  *
10*63224Sbostic  *	@(#)strcpy.c	8.1 (Berkeley) 06/10/93
1156834Sralph  */
1256834Sralph 
1356834Sralph #include <pmax/stand/dec_prom.h>
1456834Sralph 
1556834Sralph char *
strcpy(s1,s2)1656834Sralph strcpy(s1, s2)
1756834Sralph 	char *s1, *s2;
1856834Sralph {
1956834Sralph 	return (callv->strcpy(s1, s2));
2056834Sralph }
21