diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 22:49:10 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 22:49:10 +0000 |
| commit | c05ac53b8bbbbd998e18c6544011dd90f0f082da (patch) | |
| tree | 8e16a65843d0b07cf60b7fb748e2ac4890d6f1fd /lib/libc/stdlib/qsort.c | |
| parent | 2a66bf165bb3801d2346830c387414f759ab9f52 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib/qsort.c')
| -rw-r--r-- | lib/libc/stdlib/qsort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c index 71d9dc995393f..11dd9375151f9 100644 --- a/lib/libc/stdlib/qsort.c +++ b/lib/libc/stdlib/qsort.c @@ -41,9 +41,9 @@ static const char rcsid[] = #include <stdlib.h> -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 |
