From 3e4e0ea538b31df8eeff7ec24df0ead386e568dd Mon Sep 17 00:00:00 2001 From: maxim 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(-) (limited to 'lib') diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 77180a5..0fc56a4 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.1