Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/stdlib Radixsort wants a const u_char ** as a fisrt...
details: https://anonhg.NetBSD.org/src/rev/7f68f1fdf45f
branches: trunk
changeset: 500559:7f68f1fdf45f
user: garbled <garbled%NetBSD.org@localhost>
date: Wed Dec 13 22:11:24 2000 +0000
description:
Radixsort wants a const u_char ** as a fisrt argument, not just a
u_char **. Fix this manpage.
diffstat:
lib/libc/stdlib/radixsort.3 | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (21 lines):
diff -r f64fdb74580a -r 7f68f1fdf45f lib/libc/stdlib/radixsort.3
--- a/lib/libc/stdlib/radixsort.3 Wed Dec 13 22:07:50 2000 +0000
+++ b/lib/libc/stdlib/radixsort.3 Wed Dec 13 22:11:24 2000 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index