summaryrefslogtreecommitdiff
path: root/src/math/fdim.c
blob: 289f5378febba8b818968ecfd2064c8419e250ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#if 0

# define TGSOURCE "fdim.c"
#include "_tgmath.h"
#include <math.h>

TYPE TGFN(fdim)(TYPE x, TYPE y)
{
	if (x > y) {
		return x - y;
	}

	return 0;
}

/*
STDC(199901)
LINK(m)
*/


#endif