]> git.saurik.com Git - redis.git/blobdiff - pqsort.h
Revert "fsync always now uses O_DIRECT on Linux"
[redis.git] / pqsort.h
index fc437c257a2bd0f5d70ccd31fd65840572b89615..5054d5209ac70eacfd08bcabb8c072c0fec3f605 100644 (file)
--- a/pqsort.h
+++ b/pqsort.h
@@ -1,7 +1,7 @@
 /* The following is the NetBSD libc qsort implementation modified in order to
  * support partial sorting of ranges for Redis.
  *
- * Copyright(C) 2009 Salvatore Sanfilippo. All rights reserved.
+ * Copyright(C) 2009-2010 Salvatore Sanfilippo. All rights reserved.
  *
  * See the pqsort.c file for the original copyright notice. */
 
@@ -10,6 +10,6 @@
 
 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);
 
 #endif