xref: /haiku/src/system/libroot/posix/musl/math/__math_xflow.c (revision 2db0fbd87ec3eeed8ab9b08ecfd1c41891c7e3a6)
1 #include "libm.h"
2 
3 double __math_xflow(uint32_t sign, double y)
4 {
5 	return eval_as_double(fp_barrier(sign ? -y : y) * y);
6 }
7