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

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

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