fabsf.c raw

   1  #include <math.h>
   2  
   3  #if defined(_SOFT_FLOAT) || defined(__NO_FPRS__)
   4  
   5  #include "../fabsf.c"
   6  
   7  #else
   8  
   9  float fabsf(float x)
  10  {
  11  	__asm__ ("fabs %0, %1" : "=f"(x) : "f"(x));
  12  	return x;
  13  }
  14  
  15  #endif
  16