]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/bcopy.3.patch
Libc-825.24.tar.gz
[apple/libc.git] / string / FreeBSD / bcopy.3.patch
diff --git a/string/FreeBSD/bcopy.3.patch b/string/FreeBSD/bcopy.3.patch
deleted file mode 100644 (file)
index c6bb7b8..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
---- bcopy.3.bsdnew     2009-11-18 18:24:32.000000000 -0800
-+++ bcopy.3    2009-11-18 18:24:32.000000000 -0800
-@@ -42,20 +42,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 ,