X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/c957a83bde4df2e2d3d1ed0963656856b48ef0a0..224c70764cab4e0e39a26aaf3ad3016552f62f55:/string/FreeBSD/bcopy.3.patch diff --git a/string/FreeBSD/bcopy.3.patch b/string/FreeBSD/bcopy.3.patch new file mode 100644 index 0000000..e06b82f --- /dev/null +++ b/string/FreeBSD/bcopy.3.patch @@ -0,0 +1,28 @@ +--- _SB/Libc/string/FreeBSD/bcopy.3 2004-11-25 11:38:46.000000000 -0800 ++++ _SB/Libc/string/FreeBSD/bcopy.3.edit 2006-06-28 16:55:53.000000000 -0700 +@@ -46,20 +46,20 @@ + .Sh SYNOPSIS + .In strings.h + .Ft void +-.Fn bcopy "const void *src" "void *dst" "size_t len" ++.Fn bcopy "const void *s1" "void *s2" "size_t n" + .Sh DESCRIPTION + The + .Fn bcopy + function + copies +-.Fa len ++.Fa n + bytes from string +-.Fa src ++.Fa s1 + to string +-.Fa dst . ++.Fa s2 . + The two strings may overlap. + If +-.Fa len ++.Fa n + is zero, no bytes are copied. + .Sh SEE ALSO + .Xr memccpy 3 ,