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

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

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