summaryrefslogtreecommitdiff
path: root/libm/s_asinh.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-17 00:01:09 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-17 00:01:09 +0000
commit9cc29786d72e56085fc61473bd51e8829dc17bad (patch)
treecfb416a7cd67c563d31aae44b949427dee97dfdc /libm/s_asinh.c
parent3f87a95da89a18c428efbeb67268b5201da89281 (diff)
All math related relocs gone
Diffstat (limited to 'libm/s_asinh.c')
-rw-r--r--libm/s_asinh.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libm/s_asinh.c b/libm/s_asinh.c
index e9e3b9302..9e9a05660 100644
--- a/libm/s_asinh.c
+++ b/libm/s_asinh.c
@@ -28,6 +28,9 @@ static char rcsid[] = "$NetBSD: s_asinh.c,v 1.9 1995/05/12 04:57:37 jtc Exp $";
#include "math.h"
#include "math_private.h"
+libm_hidden_proto(log1p)
+libm_hidden_proto(fabs)
+
#ifdef __STDC__
static const double
#else
@@ -37,6 +40,7 @@ one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */
huge= 1.00000000000000000000e+300;
+libm_hidden_proto(asinh)
#ifdef __STDC__
double asinh(double x)
#else
@@ -63,3 +67,4 @@ huge= 1.00000000000000000000e+300;
}
if(hx>0) return w; else return -w;
}
+libm_hidden_def(asinh)