Sync usage with man page.
[netbsd-mini2440.git] / lib / libc / string / Lint_strncpy.c
blobf678869ed864827406cbc30f7eae81c73f7a3e64
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 char *
12 strncpy(dst, src, n)
13 char *dst;
14 const char *src;
15 size_t n;
17 return (0);