diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-19 19:47:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-19 19:47:02 +0000 |
commit | b8823d9f08aef1dcf0091e3cd2804ebbfc00a971 (patch) | |
tree | 3e967c587bf0f22fa23979a432312b05278bd74d /lib/libc/stdlib/radixsort.3 | |
parent | 8647fb30db517a2beea3f0fb69b24bfae50895f7 (diff) |
Make function decl match prototype in stdlib.h
Diffstat (limited to 'lib/libc/stdlib/radixsort.3')
-rw-r--r-- | lib/libc/stdlib/radixsort.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/radixsort.3 b/lib/libc/stdlib/radixsort.3 index 9dc803eb272..9b2ee2e35b8 100644 --- a/lib/libc/stdlib/radixsort.3 +++ b/lib/libc/stdlib/radixsort.3 @@ -29,7 +29,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: radixsort.3,v 1.2 1996/08/19 08:33:43 tholo Exp $ +.\" $OpenBSD: radixsort.3,v 1.3 1997/01/19 19:47:01 millert Exp $ .\" .Dd January 27, 1994 .Dt RADIXSORT 3 @@ -41,9 +41,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" "const 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" "const u_char *table" "u_int endbyte" .Sh DESCRIPTION The .Fn radixsort |