You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
359 B
16 lines
359 B
/* qsort routine */
|
|
/* we have this routine because apparently some version of the
|
|
standard libraries don't work, possibly because REF passes
|
|
in unaligned pointers */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void ref_qsort (
|
|
void *base,
|
|
unsigned num,
|
|
unsigned width,
|
|
int (*comp)(const void *, const void *)
|
|
);
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|