2010-12-08 Jeff Johnston <jjohnstn@redhat.com>

* libm/mathfp/sf_logarithm.c: Change isfinitef reference to isfinite.
This commit is contained in:
Jeff Johnston 2010-12-08 23:22:20 +00:00
parent f8afe40f49
commit 23dbdc2aaa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-12-08 Jeff Johnston <jjohnstn@redhat.com>
* libm/mathfp/sf_logarithm.c: Change isfinitef reference to isfinite.
2010-12-08 Ralf Corsepius <ralf.corsepius@rtems.org>
* include/sys/types.h: Add #if defined(__rtems__) around

View File

@ -49,7 +49,7 @@ _DEFUN (logarithmf, (float, int),
errno = EDOM;
return (z_notanum_f.f);
}
else if (!isfinitef(x))
else if (!isfinite(x))
{
if (isnanf(x))
return (z_notanum_f.f);