d882eee3490437369e4b242562e2a4606285707a
[musl] / fabsf.c
1 #include <math.h>
2
3 float fabsf(float x)
4 {
5         __asm__ ("fabs" : "+t"(x));
6         return x;
7 }