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

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