summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/bsearch.3
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2012-07-08 10:25:55 +0000
committerguenther <guenther@openbsd.org>2012-07-08 10:25:55 +0000
commit8da666abd6571965a94ee8869001fd57a6915a42 (patch)
tree621608969538c0956b6ff5f3243bf80dbc8f91fe /lib/libc/stdlib/bsearch.3
parentHandle the O_ACCMODE bits correctly, so that O_RDONLY is displayed (diff)
downloadwireguard-openbsd-8da666abd6571965a94ee8869001fd57a6915a42.tar.xz
wireguard-openbsd-8da666abd6571965a94ee8869001fd57a6915a42.zip
Zap extra spaces from function pointer arguments
Pointed out by Joachim Schipper (joachim at joachimschipper.nl)
Diffstat (limited to 'lib/libc/stdlib/bsearch.3')
-rw-r--r--lib/libc/stdlib/bsearch.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/bsearch.3 b/lib/libc/stdlib/bsearch.3
index 4877a1023ef..305dd48f509 100644
--- a/lib/libc/stdlib/bsearch.3
+++ b/lib/libc/stdlib/bsearch.3
@@ -29,9 +29,9 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $OpenBSD: bsearch.3,v 1.7 2007/05/31 19:19:31 jmc Exp $
+.\" $OpenBSD: bsearch.3,v 1.8 2012/07/08 10:25:55 guenther Exp $
.\"
-.Dd $Mdocdate: May 31 2007 $
+.Dd $Mdocdate: July 8 2012 $
.Dt BSEARCH 3
.Os
.Sh NAME
@@ -40,7 +40,7 @@
.Sh SYNOPSIS
.Fd #include <stdlib.h>
.Ft void *
-.Fn bsearch "const void *key" "const void *base" "size_t nmemb" "size_t size" "int (*compar) (const void *, const void *)"
+.Fn bsearch "const void *key" "const void *base" "size_t nmemb" "size_t size" "int (*compar)(const void *, const void *)"
.Sh DESCRIPTION
The
.Fn bsearch