summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-08-31 15:40:51 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-08-31 17:53:09 -0400
commit1ae5100030ec267efa29f70a313efdf024dd4dd7 (patch)
tree4152793523052b47dadd7dc089afcee07697830e /perl.h
parent85c93440df5753bca10d1a8ecf801379133d71d5 (diff)
downloadperl-1ae5100030ec267efa29f70a313efdf024dd4dd7.tar.gz
POSIX math: fpclassify continues.
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index 5c296dc34b..5f71489e28 100644
--- a/perl.h
+++ b/perl.h
@@ -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)