From 3b73ce2319e249cf2795cf4b0d0c624134f01e77 Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 21 Mar 2002 22:49:10 +0000 Subject: Remove __P() usage. --- lib/libc/stdlib/qsort.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/stdlib/qsort.c') diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c index 71d9dc9..11dd937 100644 --- a/lib/libc/stdlib/qsort.c +++ b/lib/libc/stdlib/qsort.c @@ -41,9 +41,9 @@ static const char rcsid[] = #include -typedef int cmp_t __P((const void *, const void *)); -static inline char *med3 __P((char *, char *, char *, cmp_t *)); -static inline void swapfunc __P((char *, char *, int, int)); +typedef int cmp_t(const void *, const void *); +static inline char *med3(char *, char *, char *, cmp_t *); +static inline void swapfunc(char *, char *, int, int); #define min(a, b) (a) < (b) ? a : b -- cgit v1.1