diff options
author | millert <> | 1997-01-19 19:47:01 +0000 |
---|---|---|
committer | millert <> | 1997-01-19 19:47:01 +0000 |
commit | b5dff0b2f91db6e814ec0abfaf1a9d6f5d2b3dc1 (patch) | |
tree | b9352490a5f716b74a4b9d90a981ac337e96581e /src/lib | |
parent | 6839749f544bf033ceffe1560c7512e70ca3bd28 (diff) | |
download | openbsd-b5dff0b2f91db6e814ec0abfaf1a9d6f5d2b3dc1.tar.gz openbsd-b5dff0b2f91db6e814ec0abfaf1a9d6f5d2b3dc1.tar.bz2 openbsd-b5dff0b2f91db6e814ec0abfaf1a9d6f5d2b3dc1.zip |
Make function decl match prototype in stdlib.h
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/radixsort.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/radixsort.3 b/src/lib/libc/stdlib/radixsort.3 index 9dc803eb27..9b2ee2e35b 100644 --- a/src/lib/libc/stdlib/radixsort.3 +++ b/src/lib/libc/stdlib/radixsort.3 | |||
@@ -29,7 +29,7 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
31 | .\" | 31 | .\" |
32 | .\" $OpenBSD: radixsort.3,v 1.2 1996/08/19 08:33:43 tholo Exp $ | 32 | .\" $OpenBSD: radixsort.3,v 1.3 1997/01/19 19:47:01 millert Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd January 27, 1994 | 34 | .Dd January 27, 1994 |
35 | .Dt RADIXSORT 3 | 35 | .Dt RADIXSORT 3 |
@@ -41,9 +41,9 @@ | |||
41 | .Fd #include <limits.h> | 41 | .Fd #include <limits.h> |
42 | .Fd #include <stdlib.h> | 42 | .Fd #include <stdlib.h> |
43 | .Ft int | 43 | .Ft int |
44 | .Fn radixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte" | 44 | .Fn radixsort "const u_char **base" "int nmemb" "const u_char *table" "u_int endbyte" |
45 | .Ft int | 45 | .Ft int |
46 | .Fn sradixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte" | 46 | .Fn sradixsort "const u_char **base" "int nmemb" "const u_char *table" "u_int endbyte" |
47 | .Sh DESCRIPTION | 47 | .Sh DESCRIPTION |
48 | The | 48 | The |
49 | .Fn radixsort | 49 | .Fn radixsort |