X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/75fd597daf80800feb18eab312c5f99e4c22e567..329cdba00afd2f97ca828134cb5c24316d516fce:/pqsort.h diff --git a/pqsort.h b/pqsort.h index 10b81147..5054d520 100644 --- 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