Re: libm: don't use deprecated classification macros

2016-09-11 Thread Theo Buehler
On Sat, Sep 10, 2016 at 01:33:26PM -0700, Philip Guenther wrote: > > fpclassify(3) says: > > The symbols isinff(), and isnanf() are provided as compatibility aliases > to isinf(), and isnan(), respectively, and their uses are deprecated. > Similarly, finite() and finitef() are depr

libm: don't use deprecated classification macros

2016-09-10 Thread Philip Guenther
fpclassify(3) says: The symbols isinff(), and isnanf() are provided as compatibility aliases to isinf(), and isnan(), respectively, and their uses are deprecated. Similarly, finite() and finitef() are deprecated versions of isfinite(). So let's use the preferred names in libm. ok