aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/math/_huge.c
blob: 7856d754f48d8a27326e2599331143413341a043 (plain)
1
2
3
4
5
6
7
/* For UCRT, positive infinity */
#include <_mingw.h>
#undef _HUGE
static double _HUGE = __builtin_huge_val();
double * __MINGW_IMP_SYMBOL(_HUGE) = &_HUGE;
#undef HUGE
extern double * __attribute__ ((alias (__MINGW64_STRINGIFY(__MINGW_IMP_SYMBOL(_HUGE))))) __MINGW_IMP_SYMBOL(HUGE);