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

7 lines
95 B
C
Vendored

#include "libm.h"
double __math_oflow(uint32_t sign)
{
return __math_xflow(sign, 0x1p769);
}