diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-08-31 15:40:51 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-08-31 17:53:09 -0400 |
commit | 1ae5100030ec267efa29f70a313efdf024dd4dd7 (patch) | |
tree | 4152793523052b47dadd7dc089afcee07697830e /perl.h | |
parent | 85c93440df5753bca10d1a8ecf801379133d71d5 (diff) | |
download | perl-1ae5100030ec267efa29f70a313efdf024dd4dd7.tar.gz |
POSIX math: fpclassify continues.
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2027,7 +2027,7 @@ EXTERN_C long double modfl(long double, long double *); # define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_QNAN) # define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN) # define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PLUS_NORM) -# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUIS_NORM) +# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUS_NORM) # define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PLUS_DENORM) # define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM) # define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO) |