summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-12-23 21:34:17 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-12-23 21:34:17 +0000
commitd405bab9aa26b30713bbcdd5a97cb18d6fefc50e (patch)
treeee04fbb943de67876734e99952cf2c1084cacf28 /lib/libc
parent64c011984defd447aaee26e1074728a775b92edf (diff)
Prototypes live in <search.h>
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdlib/lsearch.33
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/lsearch.3 b/lib/libc/stdlib/lsearch.3
index eda2aeb5994..eda67ada013 100644
--- a/lib/libc/stdlib/lsearch.3
+++ b/lib/libc/stdlib/lsearch.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: lsearch.3,v 1.6 2005/07/26 04:20:23 jaredy Exp $
+.\" $OpenBSD: lsearch.3,v 1.7 2005/12/23 21:34:16 millert Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -37,6 +37,7 @@
.Nm lfind
.Nd linear searching routines
.Sh SYNOPSIS
+.Fd #include <search.h>
.Ft char *
.Fn lsearch "const void *key" "const void *base" "size_t *nelp" \
"size_t width" "int (*compar)(void *, void *)"