diff options
Diffstat (limited to 'libm/w_hypot.c')
-rw-r--r-- | libm/w_hypot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/w_hypot.c b/libm/w_hypot.c index 0504b3c30..e4b299d5f 100644 --- a/libm/w_hypot.c +++ b/libm/w_hypot.c @@ -21,7 +21,7 @@ static char rcsid[] = "$NetBSD: w_hypot.c,v 1.6 1995/05/10 20:49:07 jtc Exp $"; #include "math.h" #include "math_private.h" - +libm_hidden_proto(hypot) #ifdef __STDC__ double hypot(double x, double y)/* wrapper hypot */ #else @@ -41,3 +41,4 @@ static char rcsid[] = "$NetBSD: w_hypot.c,v 1.6 1995/05/10 20:49:07 jtc Exp $"; return z; #endif } +libm_hidden_def(hypot) |