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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/math/expm1.c b/src/math/expm1.c
index f50c43a4..4c3b1c45 100644
--- a/src/math/expm1.c
+++ b/src/math/expm1.c
@@ -2,12 +2,13 @@
#include "nonstd/tgmath.h"
#include <math.h>
-TYPE TGFN(exmp1)(TYPE x)
+TYPE TGFN(expm1)(TYPE x)
{
return x;
}
/*
STDC(199901)
+XOPEN(400)
LINK(m)
*/