qsort_t was only defined in glibc 2.8
Change-Id: I646bac8ed4d94bf75a33b886e700c91c3837bc32
This commit is contained in:
parent
4a6b384f60
commit
5e0621f78a
|
@ -341,6 +341,10 @@
|
|||
/*
|
||||
* Define to 1 if <stdlib.h> provides qsort_r() with a GNU style function prototype.
|
||||
*/
|
||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8)
|
||||
#define HAVE_GNU_QSORT_R 1
|
||||
#else
|
||||
#define HAVE_GNU_QSORT_R 0
|
||||
#endif
|
||||
|
||||
#endif /*_ANDROID_CONFIG_H*/
|
||||
|
|
Loading…
Reference in New Issue