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

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

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