diff options
author | 2002-02-17 19:42:18 +0000 | |
---|---|---|
committer | 2002-02-17 19:42:18 +0000 | |
commit | f3c3a9c6dfeacc6897a86575161336d2a48e6df1 (patch) | |
tree | d14445e214d1b0db31b5a8d6f8b1f2938a91057e /lib/libc/stdlib/radixsort.c | |
parent | Document that both localhost and the local hostname needs to be able to (diff) | |
download | wireguard-openbsd-f3c3a9c6dfeacc6897a86575161336d2a48e6df1.tar.xz wireguard-openbsd-f3c3a9c6dfeacc6897a86575161336d2a48e6df1.zip |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'lib/libc/stdlib/radixsort.c')
-rw-r--r-- | lib/libc/stdlib/radixsort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/radixsort.c b/lib/libc/stdlib/radixsort.c index 40d7c0789f6..e03b4797153 100644 --- a/lib/libc/stdlib/radixsort.c +++ b/lib/libc/stdlib/radixsort.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: radixsort.c,v 1.4 2002/02/16 21:27:24 millert Exp $"; +static char *rcsid = "$OpenBSD: radixsort.c,v 1.5 2002/02/17 19:42:24 millert Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -63,8 +63,8 @@ typedef struct { static __inline void simplesort (const u_char **, int, int, const u_char *, u_int); static void r_sort_a(const u_char **, int, int, const u_char *, u_int); -static void r_sort_b __P((const u_char **, - const u_char **, int, int, const u_char *, u_int)); +static void r_sort_b(const u_char **, + const u_char **, int, int, const u_char *, u_int); #define THRESHOLD 20 /* Divert to simplesort(). */ #define SIZE 512 /* Default stack size. */ |