summaryrefslogtreecommitdiff
path: root/src/math/fma.c
blob: 18b059d16198f8189b56d4ec26ccb68a6fc3b3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# define TGSOURCE "fma.c"
#include "_tgmath.h"
#include <math.h>

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

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