summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/fabs.c
blob: c2074e8cb3d78d79c983de28811b372c743eb419 (plain)
1
2
3
4
5
6
7
8
9
10
#include <math.h>

double
fabs (double x)
{
  double res;

  asm ("fabs;" : "=t" (res) : "0" (x));
  return res;
}