summaryrefslogtreecommitdiff
path: root/src/math/asin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/asin.c')
-rw-r--r--src/math/asin.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/math/asin.c b/src/math/asin.c
index a94338f5..5a6ca259 100644
--- a/src/math/asin.c
+++ b/src/math/asin.c
@@ -1,9 +1,10 @@
# define TGSOURCE "asin.c"
+#include <errno.h>
#include <math.h>
#include "_tgmath.h"
-#include "errno.h"
/** arc sine **/
+
TYPE TGFN(asin)(TYPE x)
{
if (TGFN(fabs)(x) > 1.0) {
@@ -33,7 +34,5 @@ the range [-1, +1].
/*
IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
-*/
-/*
STDC(1)
*/