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

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

7 lines
123 B
C
Raw Normal View History

2019-09-28 14:36:56 +00:00
#include "libm.h"
double __math_xflow(uint32_t sign, double y)
{
return eval_as_double(fp_barrier(sign ? -y : y) * y);
}