aboutsummaryrefslogtreecommitdiff
path: root/src/math/__math_xflow.c
blob: 7b79baa0c12dc119f78f4f9bbc994b578a475f01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "libm.h"

double __math_xflow(uint32_t sign, double y)
{
	return eval_as_double(fp_barrier(sign ? -y : y) * y);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif