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

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

#include <string.h>

/*ARGSUSED*/
void *
memcpy(dst, src, len)
	void *dst;
	const void *src;
	size_t len;
{
	return (0);
}