summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorsimonb <simonb@NetBSD.org>2007-12-07 07:33:13 +0000
committersimonb <simonb@NetBSD.org>2007-12-07 07:33:13 +0000
commit179bda4711fc9cb38e34ef4140e4056045f9b86f (patch)
tree201661b983ab7439aedc7005e33948e2a8e76c44 /lib/libc/stdlib
parenta9718d7115e07a14c0f932c629a0520e362872f8 (diff)
Fix twalk()s 3rd argument name so that it matches rest of manpage and
the source code.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/tsearch.34
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/tsearch.3 b/lib/libc/stdlib/tsearch.3
index 460b305e75a..21d468924d7 100644
--- a/lib/libc/stdlib/tsearch.3
+++ b/lib/libc/stdlib/tsearch.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: tsearch.3,v 1.8 2006/11/26 13:10:54 elad Exp $
+.\" $NetBSD: tsearch.3,v 1.9 2007/12/07 07:33:13 simonb Exp $
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
.\"
@@ -41,7 +41,7 @@
.Ft void *
.Fn tsearch "const void *key" "void **rootp" "int (*compar) (const void *, const void *)"
.Ft void
-.Fn twalk "const void *root" "void (*compar) (const void *, VISIT, int)"
+.Fn twalk "const void *root" "void (*action) (const void *, VISIT, int)"
.Sh DESCRIPTION
The
.Fn tdelete ,