From 5cf5fa656274752965939115f18528b20d962087 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 28 May 2009 18:28:55 +0200 Subject: [PATCH] another minor fix for Solaris boxes --- pqsort.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pqsort.h b/pqsort.h index fc437c257..af14e31af 100644 --- a/pqsort.h +++ b/pqsort.h @@ -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