summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-11-13 16:26:13 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-11-13 16:26:13 +0000
commit1eeb0f31cd73d85a0db15ba3ace4e4d1691c4226 (patch)
tree524ca3dbe397004a33df3f6e67680d6f182b35e4 /perl.h
parente0a10278435e0dff75e2ea63cd1637e4c4b4296c (diff)
downloadperl-1eeb0f31cd73d85a0db15ba3ace4e4d1691c4226.tar.gz
Continue largefileness separation from quadness;
move nv-preserving test out of perl.h into Configure; use HAS_SETVBUF in IO. p4raw-id: //depot/cfgperl@4560
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/perl.h b/perl.h
index 8ef429c739..3bcc032537 100644
--- a/perl.h
+++ b/perl.h
@@ -1848,27 +1848,6 @@ struct svtbl {
#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)
-/* The correct way: a Configure test where (UV)~0 is cast to NV and back. */
-/* Believe. */
-#define IV_FITS_IN_NV
-/* Doubt. */
-#if defined(USE_LONG_DOUBLE) && \
- defined(LDBL_MANT_DIG) && IV_DIG >= LDBL_MANT_DIG
-# undef IV_FITS_IN_NV
-#else
-# if defined(DBL_MANT_DIG) && IV_DIG >= DBL_MANT_DIG
-# undef IV_FITS_IN_NV
-# else
-# if IV_DIG >= NV_DIG
-# undef IV_FITS_IN_NV
-# else
-# if IVSIZE >= NVSIZE
-# undef IV_FITS_IN_NV
-# endif
-# endif
-# endif
-#endif
-
/* Used with UV/IV arguments: */
/* XXXX: need to speed it up */
#define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))