Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <math.h>
  2.  
  3. float
  4. fabsf (float x)
  5. {
  6.   float res;
  7.   asm ("fabs;" : "=t" (res) : "0" (x));
  8.   return res;
  9. }
  10.