diff options
author | matthew <> | 2014-07-18 07:25:26 +0000 |
---|---|---|
committer | matthew <> | 2014-07-18 07:25:26 +0000 |
commit | 478f6e51b49915eeedecbbbd252727eef84fb61c (patch) | |
tree | a59fd3ce6bfc80319526f074379af4cd8dc97400 /src | |
parent | b1387df48af98e5be11e9dae60e51d5caff2688a (diff) | |
download | openbsd-478f6e51b49915eeedecbbbd252727eef84fb61c.tar.gz openbsd-478f6e51b49915eeedecbbbd252727eef84fb61c.tar.bz2 openbsd-478f6e51b49915eeedecbbbd252727eef84fb61c.zip |
Remove "const" from the lsearch(3) manual's synopsis too.
Reminded by Rafael Neves
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/lsearch.3 | 6 |
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" \ |