aboutsummaryrefslogtreecommitdiff
path: root/src/math/fdim.c
blob: 97afec9cbdfebb0c0bed428262d048820b3836bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <math.h>

double fdim(double x, double y)
{
	if (isnan(x))
		return x;
	if (isnan(y))
		return y;
	return x > y ? x - y : 0;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif