summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorgarbled <garbled@NetBSD.org>2000-12-13 22:11:24 +0000
committergarbled <garbled@NetBSD.org>2000-12-13 22:11:24 +0000
commit41f8bfbc996b9a5b62aaa605ffe1ad7169de648b (patch)
tree864b033d7a8f88010350bf68c310ab3fa7f9f382 /lib/libc/stdlib
parent3dc1664f573570c3aa92e57f76f1fce6cd2c3025 (diff)
Radixsort wants a const u_char ** as a fisrt argument, not just a
u_char **. Fix this manpage.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/radixsort.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/radixsort.3 b/lib/libc/stdlib/radixsort.3
index 77f31cb5266..5ecd9c38610 100644
--- a/lib/libc/stdlib/radixsort.3
+++ b/lib/libc/stdlib/radixsort.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: radixsort.3,v 1.6 1998/02/05 18:50:13 perry Exp $
+.\" $NetBSD: radixsort.3,v 1.7 2000/12/13 22:11:24 garbled Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -45,9 +45,9 @@
.Fd #include <limits.h>
.Fd #include <stdlib.h>
.Ft int
-.Fn radixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte"
+.Fn radixsort "const u_char **base" "int nmemb" "u_char *table" "u_int endbyte"
.Ft int
-.Fn sradixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte"
+.Fn sradixsort "const u_char **base" "int nmemb" "u_char *table" "u_int endbyte"
.Sh DESCRIPTION
The
.Fn radixsort