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

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

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