diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 23:09:32 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 23:09:32 +0000 |
commit | 24f818725bb7eeffff055fe5b5a0cd0bdf490bca (patch) | |
tree | ac0fc0406ca926319e182be7ad266033129406db /libm/fpmacros.c | |
parent | 17d53dd7b38b024c5e1471610a21092fa73d13da (diff) |
Remove all trailing ; after *_alias and change 2 to use weak_alias instead of __attribute__ ...
Diffstat (limited to 'libm/fpmacros.c')
-rw-r--r-- | libm/fpmacros.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libm/fpmacros.c b/libm/fpmacros.c index 57c6b5a7a..2624054d0 100644 --- a/libm/fpmacros.c +++ b/libm/fpmacros.c @@ -248,7 +248,7 @@ int __isinfl ( long double x ) } return 0; } -weak_alias (__isinfl, isinfl); +weak_alias (__isinfl, isinfl) #endif /*********************************************************************** @@ -271,14 +271,14 @@ int __isnanf ( float x ) z.fval = x; return (((z.lval&FEXP_MASK) == FEXP_MASK) && ((z.lval&FFRAC_MASK) != 0)); } -weak_alias (__isnanf, isnanf); +weak_alias (__isnanf, isnanf) int __isnan ( double x ) { int class = __fpclassify(x); return ( class == FP_NAN ); } -weak_alias (__isnan, isnan); +weak_alias (__isnan, isnan) #if 0 int __isnanl ( long double x ) @@ -286,6 +286,6 @@ int __isnanl ( long double x ) int class = __fpclassify(x); return ( class == FP_NAN ); } -weak_alias (__isnanl, isnanl); +weak_alias (__isnanl, isnanl) #endif |