fabsf.c 84 B

1234567
  1. #include <math.h>
  2. float fabsf(float x)
  3. {
  4. __asm__ ("fabs" : "+t"(x));
  5. return x;
  6. }