summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-23 08:36:43 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-23 08:36:43 +0000
commit4c6b0ea912393b78c22246724423fc4d6c34fadb (patch)
tree8cd5c939402b9362045a9d43f8a69d857c73fc51 /perl.h
parent872465582bf743a066e1240f2c3e941735674827 (diff)
parentab07f6680c0c15e8dad678f1c7fbe1ad90845467 (diff)
downloadperl-4c6b0ea912393b78c22246724423fc4d6c34fadb.tar.gz
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@4850
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index 2da6910ad0..52f85a58a9 100644
--- a/perl.h
+++ b/perl.h
@@ -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)