]> git.saurik.com Git - redis.git/blobdiff - pqsort.c
Use writev(2) if glue output buffers is disabled
[redis.git] / pqsort.c
index 59dedcbc3b4d59115db2a89d6621e86c3b11160d..da60fd1ffe686c7ae7e0a543628c9ce1cd983076 100644 (file)
--- a/pqsort.c
+++ b/pqsort.c
  * SUCH DAMAGE.
  */
 
-#ifndef __P
-#define __P(protos) protos
-#endif
-
-#include <sys/cdefs.h>
-#if defined(LIBC_SCCS) && !defined(lint)
-#if 0
-static char sccsid[] = "@(#)qsort.c    8.1 (Berkeley) 6/4/93";
-#else
-__RCSID("$NetBSD: qsort.c,v 1.19 2009/01/30 23:38:44 lukem Exp $");
-#endif
-#endif /* LIBC_SCCS and not lint */
-
 #include <sys/types.h>
 
 #include <assert.h>
 #include <errno.h>
 #include <stdlib.h>
 
-static inline char     *med3 __P((char *, char *, char *,
-    int (*)(const void *, const void *)));
-static inline void      swapfunc __P((char *, char *, size_t, int));
+static inline char     *med3 (char *, char *, char *,
+    int (*)(const void *, const void *));
+static inline void      swapfunc (char *, char *, size_t, int);
 
 #define min(a, b)      (a) < (b) ? a : b
 
@@ -101,7 +88,7 @@ swapfunc(char *a, char *b, size_t n, int swaptype)
 
 static inline char *
 med3(char *a, char *b, char *c,
-    int (*cmp) __P((const void *, const void *)))
+    int (*cmp) (const void *, const void *))
 {
 
        return cmp(a, b) < 0 ?
@@ -111,7 +98,7 @@ med3(char *a, char *b, char *c,
 
 static void
 _pqsort(void *a, size_t n, size_t es,
-    int (*cmp) __P((const void *, const void *)), void *lrange, void *rrange)
+    int (*cmp) (const void *, const void *), void *lrange, void *rrange)
 {
        char *pa, *pb, *pc, *pd, *pl, *pm, *pn;
        size_t d, r;
@@ -203,7 +190,7 @@ loop:       SWAPINIT(a, es);
 
 void
 pqsort(void *a, size_t n, size_t es,
-    int (*cmp) __P((const void *, const void *)), size_t lrange, size_t rrange)
+    int (*cmp) (const void *, const void *), size_t lrange, size_t rrange)
 {
     _pqsort(a,n,es,cmp,((unsigned char*)a)+(lrange*es),
                        ((unsigned char*)a)+((rrange+1)*es)-1);