From 9cc29786d72e56085fc61473bd51e8829dc17bad Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 17 Jan 2006 00:01:09 +0000 Subject: All math related relocs gone --- libm/s_asinh.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libm/s_asinh.c') 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) -- cgit v1.2.3