Loading...
string/FreeBSD/memcmp.3.patch /dev/null Libc-763.13
--- /dev/null
+++ Libc/Libc-763.13/string/FreeBSD/memcmp.3.patch
@@ -0,0 +1,28 @@
+--- memcmp.3.bsdnew	2009-11-18 18:24:32.000000000 -0800
++++ memcmp.3	2009-11-18 18:24:32.000000000 -0800
+@@ -43,17 +43,21 @@
+ .Sh SYNOPSIS
+ .In string.h
+ .Ft int
+-.Fn memcmp "const void *b1" "const void *b2" "size_t len"
++.Fo memcmp 
++.Fa "const void *s1"
++.Fa "const void *s2"
++.Fa "size_t n"
++.Fc
+ .Sh DESCRIPTION
+ The
+ .Fn memcmp
+ function
+ compares byte string
+-.Fa b1
++.Fa s1
+ against byte string
+-.Fa b2 .
++.Fa s2 .
+ Both strings are assumed to be
+-.Fa len
++.Fa n
+ bytes long.
+ .Sh RETURN VALUES
+ The