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

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

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