diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-23 08:36:43 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-23 08:36:43 +0000 |
commit | 4c6b0ea912393b78c22246724423fc4d6c34fadb (patch) | |
tree | 8cd5c939402b9362045a9d43f8a69d857c73fc51 /perl.h | |
parent | 872465582bf743a066e1240f2c3e941735674827 (diff) | |
parent | ab07f6680c0c15e8dad678f1c7fbe1ad90845467 (diff) | |
download | perl-4c6b0ea912393b78c22246724423fc4d6c34fadb.tar.gz |
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@4850
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1886,6 +1886,8 @@ struct ptr_tbl { #define U_V(what) (cast_uv((NV)(what))) #endif +/* Mention NV_PRESERVES_UV so that Configure picks it up. */ + /* These do not care about the fractional part, only about the range. */ #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX) #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX) |