summaryrefslogtreecommitdiff
path: root/libmath/fdim.c
blob: 1aec40c913e29a456923e557da8ff177b5304ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "lib9.h"
#include "mathi.h"

double
fdim(double x, double y)
{
	if(x>y)
		return x-y;
	else
		return 0;
}

double
fmax(double x, double y)
{
	if(x>y)
		return x;
	else
		return y;
}

double
fmin(double x, double y)
{
	if(x<y)
		return x;
	else
		return y;
}