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

fabs.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}