summaryrefslogtreecommitdiff
path: root/lib/libc/string/Lint_memchr.c
blob: 574ff09297cbc547e2339368128a49fe92ce61a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* $NetBSD: Lint_memchr.c,v 1.2 2000/06/14 06:49:07 cgd Exp $ */

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

#include <string.h>

/*ARGSUSED*/
void *
memchr(b, c, len)
	const void *b;
	int c;
	size_t len;
{
	return (0);
}