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

double __math_uflow(uint32_t sign)
{
	return __math_xflow(sign, 0x1p-767);
}


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