Partial qsort implemented in SORT command, only when both BY and LIMIT is used. minor fix for a warning compiling under Linux.

This commit is contained in:
antirez
2009-05-19 18:39:58 +02:00
parent 75fd597daf
commit 5f5b9840c3
4 changed files with 10 additions and 4 deletions

View File

@@ -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) __P((const void *, const void *)), size_t lrange, size_t rrange);
#endif