This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Revert "postpone perl_parse() exit(0) bugfix"
[perl5.git] / plan9 / math.h
1 /* Our math.h for HAS_FPCLASSIFY in plan9.config
2  *           FP_NORMAL     Normalized
3  *           FP_ZERO       Zero
4  *           FP_INFINITE   Infinity
5  *           FP_SUBNORMAL  Denormalized
6  *           FP_NAN        NaN
7  */
8 #define FP_NORMAL 1
9 #define FP_ZERO 2
10 #define FP_INFINITE 3
11 #define FP_SUBNORMAL 4
12 #define FP_NAN 5