qsort arg was wrong for ANSI C
This commit is contained in:
parent
7d2b151fde
commit
19a47cfa52
|
@ -350,8 +350,12 @@ dsort(from, to)
|
||||||
#else
|
#else
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
#ifdef __STDC__
|
||||||
|
compare(const void *a, const void *b)
|
||||||
|
#else
|
||||||
compare(a,b)
|
compare(a,b)
|
||||||
char *a, *b;
|
char *a, *b;
|
||||||
|
#endif
|
||||||
{ return strcmp(*(char **)a, *(char **)b); }
|
{ return strcmp(*(char **)a, *(char **)b); }
|
||||||
|
|
||||||
dsort(from, to)
|
dsort(from, to)
|
||||||
|
|
Loading…
Reference in a new issue