diff options
author | bde <bde@FreeBSD.org> | 1997-04-19 15:57:20 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-19 15:57:20 +0000 |
commit | 4d078cb8d9451bf36499705dbca2d944683229de (patch) | |
tree | 8edec8c76bbdb0ba690f408a6c87cf3273faea7a /lib/libc/stdlib/radixsort.3 | |
parent | 34b9f986fc9fa87146dcaa4c0362f1d2e29497c7 (diff) | |
download | FreeBSD-src-4d078cb8d9451bf36499705dbca2d944683229de.zip FreeBSD-src-4d078cb8d9451bf36499705dbca2d944683229de.tar.gz |
Fixed #include and/or prototype bugs in synopsis.
Diffstat (limited to 'lib/libc/stdlib/radixsort.3')
-rw-r--r-- | lib/libc/stdlib/radixsort.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/radixsort.3 b/lib/libc/stdlib/radixsort.3 index 4d49d46..29a1d9d 100644 --- a/lib/libc/stdlib/radixsort.3 +++ b/lib/libc/stdlib/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 unsigned char **base" "int nmemb" "const unsigned char *table" "unsigned endbyte" .Ft int -.Fn sradixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte" +.Fn sradixsort "const unsigned char **base" "int nmemb" "const unsigned char *table" "unsigned endbyte" .Sh DESCRIPTION The .Fn radixsort |