__math_uflow.c 96 字节
Newer Older
C
c00346986 已提交
1 2 3 4 5 6
#include "libm.h"

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