ClickHouse/base/glibc-compatibility/musl/__math_uflowf.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
97 B
C
Raw Normal View History

2019-09-28 14:36:56 +00:00
#include "libm.h"
float __math_uflowf(uint32_t sign)
{
return __math_xflowf(sign, 0x1p-95f);
}