Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sqrtl.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bd3013906f202aed9a6410fd3512124e7262522 (plain)
1
2
3
4
5
6
7
8
#include <math.h>
long double
sqrtl (long double x)
{
  long double res;
  asm ("fsqrt" : "=t" (res) : "0" (x));
  return res;
}