qsort arg was wrong for ANSI C

This commit is contained in:
ceriel 1991-10-16 16:08:27 +00:00
parent 7d2b151fde
commit 19a47cfa52

View file

@ -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)