diff options
author | Maxim Konovalov <maxim@FreeBSD.org> | 2006-06-15 15:56:55 +0000 |
---|---|---|
committer | Maxim Konovalov <maxim@FreeBSD.org> | 2006-06-15 15:56:55 +0000 |
commit | f0a3522b5d66afbeaa69c6b69b2557c23c5ba0bb (patch) | |
tree | 1fe2b81d66215f7767ab57dead22b6a3efb504bc | |
parent | 19ba8395e1617df260047239f97c333863f7572a (diff) |
Notes
-rw-r--r-- | lib/libc/string/strlcpy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 77180a58fd2c2..0fc56a4c138d4 100644 --- a/lib/libc/string/strlcpy.c +++ b/lib/libc/string/strlcpy.c @@ -41,7 +41,8 @@ __FBSDID("$FreeBSD$"); * will be copied. Always NUL terminates (unless siz == 0). * Returns strlen(src); if retval >= siz, truncation occurred. */ -size_t strlcpy(dst, src, siz) +size_t +strlcpy(dst, src, siz) char *dst; const char *src; size_t siz; |