Loading...
--- /dev/null
+++ Libc/Libc-763.12/string/FreeBSD/memmove.3.patch
@@ -0,0 +1,36 @@
+--- memmove.3.bsdnew 2009-11-18 18:24:33.000000000 -0800
++++ memmove.3 2009-11-18 18:24:33.000000000 -0800
+@@ -43,24 +43,28 @@
+ .Sh SYNOPSIS
+ .In string.h
+ .Ft void *
+-.Fn memmove "void *dst" "const void *src" "size_t len"
++.Fo memmove
++.Fa "void *s1"
++.Fa "const void *s2"
++.Fa "size_t n"
++.Fc
+ .Sh DESCRIPTION
+ The
+ .Fn memmove
+ function
+ copies
+-.Fa len
++.Fa n
+ bytes from string
+-.Fa src
++.Fa s2
+ to string
+-.Fa dst .
++.Fa s1 .
+ The two strings may overlap;
+ the copy is always done in a non-destructive manner.
+ .Sh RETURN VALUES
+ The
+ .Fn memmove
+ function returns the original value of
+-.Fa dst .
++.Fa s1 .
+ .Sh SEE ALSO
+ .Xr bcopy 3 ,
+ .Xr memccpy 3 ,