Revert "Add qsort_r() implementation to the C library."

This reverts commit 754c178ae5.

Turns out we don't need it afterall (needed a stable sort anyways).
So, we'll make that change in the dev branch instead.
This commit is contained in:
Mathias Agopian
2009-12-03 16:14:40 -08:00
parent 754c178ae5
commit 5f53a18204
4 changed files with 37 additions and 76 deletions

View File

@@ -101,7 +101,6 @@ extern void * bsearch(const void *key, const void *base0,
int (*compar)(const void *, const void *));
extern void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
extern void qsort_r(void *a, size_t n, size_t es, void *thunk, int (*)(void *, const void *, const void *));
extern long jrand48(unsigned short *);
extern long mrand48(void);