diff options
Diffstat (limited to 'src/math/i386/fabs.c')
-rw-r--r-- | src/math/i386/fabs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/i386/fabs.c b/src/math/i386/fabs.c new file mode 100644 index 00000000..39672786 --- /dev/null +++ b/src/math/i386/fabs.c @@ -0,0 +1,7 @@ +#include <math.h> + +double fabs(double x) +{ + __asm__ ("fabs" : "+t"(x)); + return x; +} |