From f0a3522b5d66afbeaa69c6b69b2557c23c5ba0bb Mon Sep 17 00:00:00 2001 From: Maxim Konovalov Date: Thu, 15 Jun 2006 15:56:55 +0000 Subject: o Make grep ^strlcpy work: put a return value type on separate line. --- lib/libc/string/strlcpy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 77180a58fd2c..0fc56a4c138d 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; -- cgit v1.2.3