OSDN Git Service

- fix generation of sysnum.h for parallel builds, second take.
[uclinux-h8/uClibc.git] / libm / s_tanh.c
index 6276e89..ecabbef 100644 (file)
@@ -41,12 +41,16 @@ static char rcsid[] = "$NetBSD: s_tanh.c,v 1.7 1995/05/10 20:48:22 jtc Exp $";
 #include "math.h"
 #include "math_private.h"
 
+libm_hidden_proto(expm1)
+libm_hidden_proto(fabs)
+
 #ifdef __STDC__
 static const double one=1.0, two=2.0, tiny = 1.0e-300;
 #else
 static double one=1.0, two=2.0, tiny = 1.0e-300;
 #endif
 
+libm_hidden_proto(tanh)
 #ifdef __STDC__
        double tanh(double x)
 #else
@@ -84,3 +88,4 @@ static double one=1.0, two=2.0, tiny = 1.0e-300;
        }
        return (jx>=0)? z: -z;
 }
+libm_hidden_def(tanh)