musl-tcc/src/math/__math_uflow.c
2022-04-14 15:49:55 +08:00

7 lines
96 B
C

#include "libm.h"
double __math_uflow(uint32_t sign)
{
return __math_xflow(sign, 0x1p-767);
}