aboutsummaryrefslogtreecommitdiff
path: root/src/math/__math_oflowf.c
blob: 294a4cb41d252bdca17f70158ef789cf885a7ba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "libm.h"

float __math_oflowf(uint32_t sign)
{
	return __math_xflowf(sign, 0x1p97f);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif