cosmopolitan/libc/math/__math_xflowf.c

7 lines
132 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#include "libc/math/libm.h"
float __math_xflowf(uint32_t sign, float y)
{
return eval_as_float(fp_barrierf(sign ? -y : y) * y);
}