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

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

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