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

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

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