summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib
diff options
context:
space:
mode:
authormatthew <>2014-07-18 07:25:26 +0000
committermatthew <>2014-07-18 07:25:26 +0000
commit8f797f53e805f4a4cadb5cf6ef625efa6fd170cb (patch)
treea59fd3ce6bfc80319526f074379af4cd8dc97400 /src/lib/libc/stdlib
parent4f75fccbdbb9d94e0781f2337037b8261eba7f5e (diff)
downloadopenbsd-8f797f53e805f4a4cadb5cf6ef625efa6fd170cb.tar.gz
openbsd-8f797f53e805f4a4cadb5cf6ef625efa6fd170cb.tar.bz2
openbsd-8f797f53e805f4a4cadb5cf6ef625efa6fd170cb.zip
Remove "const" from the lsearch(3) manual's synopsis too.
Reminded by Rafael Neves
Diffstat (limited to 'src/lib/libc/stdlib')
-rw-r--r--src/lib/libc/stdlib/lsearch.36
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/lsearch.3 b/src/lib/libc/stdlib/lsearch.3
index c5a55980e1..e21d97b647 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.10 2013/06/05 03:39:23 tedu Exp $ 1.\" $OpenBSD: lsearch.3,v 1.11 2014/07/18 07:25:26 matthew 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: June 5 2013 $ 32.Dd $Mdocdate: July 18 2014 $
33.Dt LSEARCH 3 33.Dt LSEARCH 3
34.Os 34.Os
35.Sh NAME 35.Sh NAME
@@ -39,7 +39,7 @@
39.Sh SYNOPSIS 39.Sh SYNOPSIS
40.In search.h 40.In search.h
41.Ft char * 41.Ft char *
42.Fn lsearch "const void *key" "const void *base" "size_t *nelp" \ 42.Fn lsearch "const void *key" "void *base" "size_t *nelp" \
43 "size_t width" "int (*compar)(const void *, const void *)" 43 "size_t width" "int (*compar)(const void *, const void *)"
44.Ft char * 44.Ft char *
45.Fn lfind "const void *key" "const void *base" "size_t *nelp" \ 45.Fn lfind "const void *key" "const void *base" "size_t *nelp" \