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

float
sqrtf (float x)
{
  float res;
  asm ("fsqrt" : "=t" (res) : "0" (x));
  return res;
}