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

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

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