diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-26 14:50:16 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-26 14:50:16 +0000 |
commit | 40b8158b60e8b19dd5e2ed6bb796421ce49ff53a (patch) | |
tree | aff161e3cb411ac781f7d11eb9fcbb553cd7ce57 /libm/s_isnan.c | |
parent | fc3607dc320fc6c6881ccfa7b68f3630e41c3c47 (diff) |
- move libm_hidden_proto to the corresponding headers. Remove from callsites.
Note that gamma_r is not provided by glibc, perhaps add a SUN specific knob later
Diffstat (limited to 'libm/s_isnan.c')
-rw-r--r-- | libm/s_isnan.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/libm/s_isnan.c b/libm/s_isnan.c index 6263d1c3f..671c5cb2e 100644 --- a/libm/s_isnan.c +++ b/libm/s_isnan.c @@ -10,10 +10,6 @@ * ==================================================== */ -#if defined(LIBM_SCCS) && !defined(lint) -static char rcsid[] = "$NetBSD: s_isnan.c,v 1.8 1995/05/10 20:47:36 jtc Exp $"; -#endif - /* * isnan(x) returns 1 is x is nan, else 0; * no branching! @@ -22,7 +18,6 @@ static char rcsid[] = "$NetBSD: s_isnan.c,v 1.8 1995/05/10 20:47:36 jtc Exp $"; #include "math.h" #include "math_private.h" -libm_hidden_proto (__isnan) #ifdef __STDC__ int __isnan(double x) #else @@ -37,9 +32,6 @@ libm_hidden_proto (__isnan) hx = 0x7ff00000 - hx; return (int)(((u_int32_t)hx)>>31); } -libm_hidden_def (__isnan) -weak_alias (__isnan, isnan) -#ifdef NO_LONG_DOUBLE -strong_alias (__isnan, __isnanl) -weak_alias (__isnan, isnanl) -#endif +libm_hidden_def(__isnan) +weak_alias(__isnan,isnan) +libm_hidden_weak(isnan) |