summaryrefslogtreecommitdiff
path: root/lib/libc/string/Lint_bcmp.c
blob: 248d0b64f8eef902afdf947e920e21a34d10d7af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*	$NetBSD: Lint_bcmp.c,v 1.1 1997/11/06 00:51:48 cgd Exp $	*/

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <string.h>

/*ARGSUSED*/
int
bcmp(b1, b2, len)
	const void *b1, *b2;
	size_t len;
{
	return (0);
}