summaryrefslogtreecommitdiff
path: root/src/math/fdim.c
blob: 922c5040fdd12ce9c894b9878eae103c70472a4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# define TGSOURCE "fdim.c"
#include "nonstd/tgmath.h"
#include <math.h>

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

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