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

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

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