Loading...
string/FreeBSD/bcmp.3 Libc-1082.20.4 Libc-763.12
--- Libc/Libc-1082.20.4/string/FreeBSD/bcmp.3
+++ Libc/Libc-763.12/string/FreeBSD/bcmp.3
@@ -41,18 +41,18 @@
 .Sh SYNOPSIS
 .In strings.h
 .Ft int
-.Fn bcmp "const void *s1" "const void *s2" "size_t n"
+.Fn bcmp "const void *b1" "const void *b2" "size_t len"
 .Sh DESCRIPTION
 The
 .Fn bcmp
 function
 compares byte string
-.Fa s1
+.Fa b1
 against byte string
-.Fa s2 ,
+.Fa b2 ,
 returning zero if they are identical, non-zero otherwise.
 Both strings are assumed to be
-.Fa n
+.Fa len
 bytes long.
 Zero-length strings are always identical.
 .Pp