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

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

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