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

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

long double
fdiml (long double x, long double y)
{
   return  (isgreater(x, y) ? (x - y) : 0.0L);
}