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

fabsl.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eead724d4a7f8fdb8ee0f9a94a4dc61936f98960 (plain)
1
2
3
4
5
6
7
8
9
#include <math.h>

long double
fabsl (long double x)
{
  long double res;
  asm ("fabs;" : "=t" (res) : "0" (x));
  return res;
}