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