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

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

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