o Make grep ^strlcpy work: put a return value type on separate line.

This commit is contained in:
maxim 2006-06-15 15:56:55 +00:00
parent ec2f873875
commit 3e4e0ea538

View File

@ -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;