summaryrefslogtreecommitdiff
path: root/src/math/acosh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/acosh.c')
-rw-r--r--src/math/acosh.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/acosh.c b/src/math/acosh.c
new file mode 100644
index 00000000..3e64e9d1
--- /dev/null
+++ b/src/math/acosh.c
@@ -0,0 +1,13 @@
+# define TGSOURCE "acosh.c"
+#include "nontstd/tgmath.h"
+#include <math.h>
+
+TYPE TGFN(acosh)(TYPE x)
+{
+ return 0.0;
+}
+
+/*
+STDC(199901)
+LINK(m)
+*/