summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/qsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/qsort.c')
-rw-r--r--src/lib/libc/stdlib/qsort.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libc/stdlib/qsort.c b/src/lib/libc/stdlib/qsort.c
index c06bd54054..fe757b9332 100644
--- a/src/lib/libc/stdlib/qsort.c
+++ b/src/lib/libc/stdlib/qsort.c
@@ -33,14 +33,14 @@
33 33
34#if defined(LIBC_SCCS) && !defined(lint) 34#if defined(LIBC_SCCS) && !defined(lint)
35/*static char sccsid[] = "from: @(#)qsort.c 8.1 (Berkeley) 6/4/93";*/ 35/*static char sccsid[] = "from: @(#)qsort.c 8.1 (Berkeley) 6/4/93";*/
36static char *rcsid = "$Id: qsort.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; 36static char *rcsid = "$Id: qsort.c,v 1.2 1996/03/25 22:16:40 tholo Exp $";
37#endif /* LIBC_SCCS and not lint */ 37#endif /* LIBC_SCCS and not lint */
38 38
39#include <sys/types.h> 39#include <sys/types.h>
40#include <stdlib.h> 40#include <stdlib.h>
41 41
42static inline char *med3 __P((char *, char *, char *, int (*)())); 42static __inline char *med3 __P((char *, char *, char *, int (*)()));
43static inline void swapfunc __P((char *, char *, int, int)); 43static __inline void swapfunc __P((char *, char *, int, int));
44 44
45#define min(a, b) (a) < (b) ? a : b 45#define min(a, b) (a) < (b) ? a : b
46 46
@@ -61,7 +61,7 @@ static inline void swapfunc __P((char *, char *, int, int));
61#define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \ 61#define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \
62 es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1; 62 es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1;
63 63
64static inline void 64static __inline void
65swapfunc(a, b, n, swaptype) 65swapfunc(a, b, n, swaptype)
66 char *a, *b; 66 char *a, *b;
67 int n, swaptype; 67 int n, swaptype;
@@ -82,7 +82,7 @@ swapfunc(a, b, n, swaptype)
82 82
83#define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) 83#define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype)
84 84
85static inline char * 85static __inline char *
86med3(a, b, c, cmp) 86med3(a, b, c, cmp)
87 char *a, *b, *c; 87 char *a, *b, *c;
88 int (*cmp)(); 88 int (*cmp)();