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

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

#include <string.h>

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