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

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

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