xref: /csrg-svn/sys/pmax/stand/libsa/strcmp.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  *	@(#)strcmp.c	8.1 (Berkeley) 06/10/93
1156834Sralph  */
1256834Sralph 
1356834Sralph #include <pmax/stand/dec_prom.h>
1456834Sralph 
strcmp(s1,s2)1556834Sralph strcmp(s1, s2)
1656834Sralph 	char *s1, *s2;
1756834Sralph {
1856834Sralph 	return (callv->strcmp(s1, s2));
1956834Sralph }
20