summaryrefslogtreecommitdiff
path: root/dviware/umddvi/libcompat/bcmp.c
blob: 8281589406b4296e01205881952bcffb1577aed9 (plain)
1
2
3
4
5
6
bcmp(a, b, n)
	char *a, *b;
	int n;
{
	return(memcmp(a, b, n));
}