Subject: Re: qsort problems (belated)
To: None <jma@lpa.com, seebs@solon.com>
From: Peter Seebach <seebs@solon.com>
List: netbsd-help
Date: 11/25/1996 19:21:20
But it's also incorrect; qsort, at *call* time, will call
your comparison function as an
	int (*foo)(const void *, const void *)
and it invokes undefined behavior to call any other kind of function
that way.

(It will work on machines which use the same representation for
all pointers to functions, but this is sloppy.)

-s