diff options
Diffstat (limited to 'libm/powerpc/s_copysign.c')
-rw-r--r-- | libm/powerpc/s_copysign.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libm/powerpc/s_copysign.c b/libm/powerpc/s_copysign.c index d3fb5f40b..1a988ac87 100644 --- a/libm/powerpc/s_copysign.c +++ b/libm/powerpc/s_copysign.c @@ -22,6 +22,7 @@ * * *******************************************************************************/ +#include <math.h> #include "../fp_private.h" /******************************************************************************* @@ -34,6 +35,7 @@ * suggested in the IEEE standard 754. * *******************************************************************************/ +libm_hidden_proto(copysign) double copysign ( double arg2, double arg1 ) { union @@ -54,3 +56,4 @@ double copysign ( double arg2, double arg1 ) return y.dbl; } +libm_hidden_def(copysign) |