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

This commit is contained in:
Maxim Konovalov 2006-06-15 15:56:55 +00:00
parent 19ba8395e1
commit f0a3522b5d

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;