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