diff options
Diffstat (limited to 'src/lib/libc/stdlib/radixsort.c')
-rw-r--r-- | src/lib/libc/stdlib/radixsort.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libc/stdlib/radixsort.c b/src/lib/libc/stdlib/radixsort.c index dd51013c94..41ed962466 100644 --- a/src/lib/libc/stdlib/radixsort.c +++ b/src/lib/libc/stdlib/radixsort.c | |||
@@ -35,8 +35,7 @@ | |||
35 | */ | 35 | */ |
36 | 36 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 37 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char sccsid[] = "from: @(#)radixsort.c 8.1 (Berkeley) 6/4/93";*/ | 38 | static char *rcsid = "$OpenBSD: radixsort.c,v 1.3 1996/08/19 08:33:44 tholo Exp $"; |
39 | static char *rcsid = "$Id: radixsort.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 39 | #endif /* LIBC_SCCS and not lint */ |
41 | 40 | ||
42 | /* | 41 | /* |
@@ -61,7 +60,7 @@ typedef struct { | |||
61 | int sn, si; | 60 | int sn, si; |
62 | } stack; | 61 | } stack; |
63 | 62 | ||
64 | static inline void simplesort | 63 | static __inline void simplesort |
65 | __P((const u_char **, int, int, const u_char *, u_int)); | 64 | __P((const u_char **, int, int, const u_char *, u_int)); |
66 | static void r_sort_a __P((const u_char **, int, int, const u_char *, u_int)); | 65 | static void r_sort_a __P((const u_char **, int, int, const u_char *, u_int)); |
67 | static void r_sort_b __P((const u_char **, | 66 | static void r_sort_b __P((const u_char **, |
@@ -295,7 +294,7 @@ r_sort_b(a, ta, n, i, tr, endch) | |||
295 | } | 294 | } |
296 | } | 295 | } |
297 | 296 | ||
298 | static inline void | 297 | static __inline void |
299 | simplesort(a, n, b, tr, endch) /* insertion sort */ | 298 | simplesort(a, n, b, tr, endch) /* insertion sort */ |
300 | register const u_char **a; | 299 | register const u_char **a; |
301 | int n, b; | 300 | int n, b; |