From e2881f49cc545371650e022bf57db9fee6d9f8c9 Mon Sep 17 00:00:00 2001 From: obrien Date: Fri, 22 Mar 2002 09:22:15 +0000 Subject: Remove multi-line __P() usage. --- lib/libc/stdlib/radixsort.c | 4 ++-- lib/libc/stdlib/twalk.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libc/stdlib') diff --git a/lib/libc/stdlib/radixsort.c b/lib/libc/stdlib/radixsort.c index 9540f63..de5cd4b 100644 --- a/lib/libc/stdlib/radixsort.c +++ b/lib/libc/stdlib/radixsort.c @@ -66,8 +66,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. */ diff --git a/lib/libc/stdlib/twalk.c b/lib/libc/stdlib/twalk.c index 78d3685..78be57d 100644 --- a/lib/libc/stdlib/twalk.c +++ b/lib/libc/stdlib/twalk.c @@ -22,8 +22,8 @@ __RCSID("$NetBSD: twalk.c,v 1.1 1999/02/22 10:33:16 christos Exp $"); #include #include -static void trecurse __P((const node_t *, - void (*action)(const void *, VISIT, int), int level)); +static void trecurse(const node_t *, + void (*action)(const void *, VISIT, int), int level); /* Walk the nodes of a tree */ static void -- cgit v1.1