zig/lib/libc/musl/src/math/__math_oflowf.c
2019-07-16 19:54:14 -04:00

7 lines
96 B
C
Vendored

#include "libm.h"
float __math_oflowf(uint32_t sign)
{
return __math_xflowf(sign, 0x1p97f);
}