diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-26 10:15:05 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-26 10:15:05 +0000 |
commit | 6d0c300ebf07eafbda54a3caa3d9902265d1312a (patch) | |
tree | 32863c3c77b1b135301aeb74a0d32b0308b842d3 /libm/fpmacros.c | |
parent | bddfb866b0a7c70010083c3786ef4285643d4241 (diff) |
Remove s_ceilf.c and s_floorf.c, ceilf and floorf are provided by the float_wrapper. I hope that __ceilf and __floorf are not needed anywhere. Use only __finite from s_finite.c, disabled in fpmacros.c. Allow IMA compiling, 2 files: s_lib_version.c and w_cabs.c have to be reworked for complete IMA.
Diffstat (limited to 'libm/fpmacros.c')
-rw-r--r-- | libm/fpmacros.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libm/fpmacros.c b/libm/fpmacros.c index 78cc46e9a..57c6b5a7a 100644 --- a/libm/fpmacros.c +++ b/libm/fpmacros.c @@ -160,11 +160,13 @@ int __finitef ( float x ) } weak_alias (__finitef, finitef) +#if 0 /* use __finite in s_finite.c */ int __finite ( double x ) { return ( __fpclassify ( x ) >= FP_ZERO ); } weak_alias (__finite, finite) +#endif /*********************************************************************** |