blob: 1e81bcb1af94cc2af6c3caabbc4ee4b9ebfb9da8 (
plain)
1
2
3
4
5
6
7
|
/* NB: Clang has its own <tgmath.h> and doesn't use <tgmath.h> from
glibc. */
#if defined _ISOMAC && defined __clang__
# include_next <tgmath.h>
#else
# include <math/tgmath.h>
#endif
|