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