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

TYPE TGFN(exp2)(TYPE x)
{
	return x;
}

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