xref: /csrg-svn/sys/pmax/stand/libsa/strcmp.c (revision 56834)
1*56834Sralph /*-
2*56834Sralph  * Copyright (c) 1992 The Regents of the University of California.
3*56834Sralph  * All rights reserved.
4*56834Sralph  *
5*56834Sralph  * This code is derived from software contributed to Berkeley by
6*56834Sralph  * Ralph Campbell.
7*56834Sralph  *
8*56834Sralph  * %sccs.include.redist.c%
9*56834Sralph  *
10*56834Sralph  *	@(#)strcmp.c	7.1 (Berkeley) 11/15/92
11*56834Sralph  */
12*56834Sralph 
13*56834Sralph #include <pmax/stand/dec_prom.h>
14*56834Sralph 
15*56834Sralph strcmp(s1, s2)
16*56834Sralph 	char *s1, *s2;
17*56834Sralph {
18*56834Sralph 	return (callv->strcmp(s1, s2));
19*56834Sralph }
20