summaryrefslogtreecommitdiff
path: root/lib/libm/__math_oflow.c
blob: b87d6f0e9c2c10bc3e0956ef1d06132f2f5371a9 (plain)
1
2
3
4
5
6
7
8
#include "libm.h" // for __math_xflow, __math_oflow

#include <stdint.h> // for uint32_t

double __math_oflow(uint32_t sign)
{
	return __math_xflow(sign, 0x1p769);
}