diff options
author | 2014-07-18 07:25:26 +0000 | |
---|---|---|
committer | 2014-07-18 07:25:26 +0000 | |
commit | 7b863efcc89a510978d7bb8cff6e05529405c94f (patch) | |
tree | 771eb0e8808f319c926f4ec585b3d261eb0c9501 /lib/libc | |
parent | implement EFBIG handling for heavily fragmented packets on the tx path. (diff) | |
download | wireguard-openbsd-7b863efcc89a510978d7bb8cff6e05529405c94f.tar.xz wireguard-openbsd-7b863efcc89a510978d7bb8cff6e05529405c94f.zip |
Remove "const" from the lsearch(3) manual's synopsis too.
Reminded by Rafael Neves
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdlib/lsearch.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/lsearch.3 b/lib/libc/stdlib/lsearch.3 index c5a55980e1d..e21d97b647a 100644 --- a/lib/libc/stdlib/lsearch.3 +++ b/lib/libc/stdlib/lsearch.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: lsearch.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ +.\" $OpenBSD: lsearch.3,v 1.11 2014/07/18 07:25:26 matthew Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" @(#)lsearch.3 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: July 18 2014 $ .Dt LSEARCH 3 .Os .Sh NAME @@ -39,7 +39,7 @@ .Sh SYNOPSIS .In search.h .Ft char * -.Fn lsearch "const void *key" "const void *base" "size_t *nelp" \ +.Fn lsearch "const void *key" "void *base" "size_t *nelp" \ "size_t width" "int (*compar)(const void *, const void *)" .Ft char * .Fn lfind "const void *key" "const void *base" "size_t *nelp" \ |