summaryrefslogtreecommitdiff
path: root/src/math/exp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/exp.c')
-rw-r--r--src/math/exp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/math/exp.c b/src/math/exp.c
index 412697b2..4b25da63 100644
--- a/src/math/exp.c
+++ b/src/math/exp.c
@@ -1,9 +1,10 @@
# define TGSOURCE "exp.c"
+#include <errno.h>
#include <math.h>
#include "_tgmath.h"
-#include "errno.h"
/** exponential function **/
+
TYPE TGFN(exp)(TYPE x)
{
int MAXLOOPS = 10;
@@ -44,7 +45,5 @@ compute the exponential function of ARGUMENT(x).
/*
IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
-*/
-/*
STDC(1)
*/