Remove building with NOCRYPTO option
[minix.git] / lib / libc / string / Lint_memchr.c
blob574ff09297cbc547e2339368128a49fe92ce61a1
1 /* $NetBSD: Lint_memchr.c,v 1.2 2000/06/14 06:49:07 cgd Exp $ */
3 /*
4 * This file placed in the public domain.
5 * Chris Demetriou, November 5, 1997.
6 */
8 #include <string.h>
10 /*ARGSUSED*/
11 void *
12 memchr(b, c, len)
13 const void *b;
14 int c;
15 size_t len;
17 return (0);