2010-12-08 Jeff Johnston <jjohnstn@redhat.com>
* libm/mathfp/sf_logarithm.c: Change isfinitef reference to isfinite.
This commit is contained in:
parent
f8afe40f49
commit
23dbdc2aaa
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue