Use standard C99 isfinite, isnan, isinf in place of GSL substitutes.
authorBen Pfaff <blp@gnu.org>
Sun, 27 Jul 2008 18:12:45 +0000 (11:12 -0700)
committerBen Pfaff <blp@gnu.org>
Tue, 29 Jul 2008 05:30:13 +0000 (22:30 -0700)
In change a9afcdd22, "Use gsl_isnan instead of isnan, ...," isfinite,
isnan, and isinf were changed to use the GSL substitutes because of
lack of portability of the C99 versions.  Now, gnulib has portable
versions of all of these, so change them back.

This commit changes calls to gsl_finite() to call isfinite() instead
of the equivalent finite().  isfinite() is correct here: both gsl_finite()
and finite() return true for NaNs, which is a surprising result given
that a NaN is definitely not finite, but isfinite() returns false and,
more importantly, behaves as actually wanted in each place it is used
in PSPP code.

This commit requires upgrading gnulib to at least change 5183a0e3c,
"Add missing dependencies on new m4/exponent[fdl].m4 files," or later,
and re-running "make -f Smake".


No differences found