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

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

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