Sync usage with man page.
[netbsd-mini2440.git] / lib / libc / string / Lint_memccpy.c
blobcb370999e4e394339da76827c7ae62683f603a10
1 /* $NetBSD$ */
3 /*
4 * This file placed in the public domain.
5 * Matthias Pfaller, December 5, 1997.
6 */
8 #include <string.h>
10 /*ARGSUSED*/
11 void *
12 memccpy(dst, src, c, n)
13 void *dst;
14 const void *src;
15 int c;
16 size_t n;
18 return(0);