summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmc <>2015-11-30 17:03:05 +0000
committerjmc <>2015-11-30 17:03:05 +0000
commit05ff3cd7f6828fa4167756f977affd5e0b6f2120 (patch)
tree7198d5b5e8888c3907b284cb42dc0db195ecdcc3
parent21190b9f24e4f5df058a145d2ec58660aaf5017d (diff)
downloadopenbsd-05ff3cd7f6828fa4167756f977affd5e0b6f2120.tar.gz
openbsd-05ff3cd7f6828fa4167756f977affd5e0b6f2120.tar.bz2
openbsd-05ff3cd7f6828fa4167756f977affd5e0b6f2120.zip
change Xrs from now-defunct db(3) to dbopen(3); this wasn;t a
straight replace: thanks both to schwarze and maja for feedback on how to rewrite parts; i've snuck in an rcs id->openbsd id change in dev_mkdb too;
-rw-r--r--src/lib/libc/stdlib/bsearch.36
-rw-r--r--src/lib/libc/stdlib/lsearch.36
2 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libc/stdlib/bsearch.3 b/src/lib/libc/stdlib/bsearch.3
index 270086df36..9c66eac0fe 100644
--- a/src/lib/libc/stdlib/bsearch.3
+++ b/src/lib/libc/stdlib/bsearch.3
@@ -29,9 +29,9 @@
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE. 30.\" SUCH DAMAGE.
31.\" 31.\"
32.\" $OpenBSD: bsearch.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ 32.\" $OpenBSD: bsearch.3,v 1.10 2015/11/30 17:03:05 jmc Exp $
33.\" 33.\"
34.Dd $Mdocdate: June 5 2013 $ 34.Dd $Mdocdate: November 30 2015 $
35.Dt BSEARCH 3 35.Dt BSEARCH 3
36.Os 36.Os
37.Sh NAME 37.Sh NAME
@@ -73,7 +73,7 @@ function returns a pointer to a matching member of the array, or a null
73pointer if no match is found. 73pointer if no match is found.
74If two members compare as equal, which member is matched is unspecified. 74If two members compare as equal, which member is matched is unspecified.
75.Sh SEE ALSO 75.Sh SEE ALSO
76.Xr db 3 , 76.Xr dbopen 3 ,
77.Xr lsearch 3 , 77.Xr lsearch 3 ,
78.Xr qsort 3 , 78.Xr qsort 3 ,
79.Xr tsearch 3 79.Xr tsearch 3
diff --git a/src/lib/libc/stdlib/lsearch.3 b/src/lib/libc/stdlib/lsearch.3
index a9deec155a..d82c55c859 100644
--- a/src/lib/libc/stdlib/lsearch.3
+++ b/src/lib/libc/stdlib/lsearch.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: lsearch.3,v 1.13 2015/02/15 02:02:53 tedu Exp $ 1.\" $OpenBSD: lsearch.3,v 1.14 2015/11/30 17:03:05 jmc Exp $
2.\" 2.\"
3.\" Copyright (c) 1989, 1991, 1993 3.\" Copyright (c) 1989, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
29.\" 29.\"
30.\" @(#)lsearch.3 8.1 (Berkeley) 6/4/93 30.\" @(#)lsearch.3 8.1 (Berkeley) 6/4/93
31.\" 31.\"
32.Dd $Mdocdate: February 15 2015 $ 32.Dd $Mdocdate: November 30 2015 $
33.Dt LSEARCH 3 33.Dt LSEARCH 3
34.Os 34.Os
35.Sh NAME 35.Sh NAME
@@ -95,7 +95,7 @@ the location referenced by the argument
95is incremented by one. 95is incremented by one.
96.Sh SEE ALSO 96.Sh SEE ALSO
97.Xr bsearch 3 , 97.Xr bsearch 3 ,
98.Xr db 3 98.Xr dbopen 3
99.Sh STANDARDS 99.Sh STANDARDS
100The 100The
101.Fn lsearch 101.Fn lsearch