diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-15 19:17:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-15 19:17:06 +0000 |
commit | 28e5dec85047e189010079efa89eed07bc9eddc8 (patch) | |
tree | dd941df355c40cba395e514551ea847e8d07edfd /proto.h | |
parent | c11ecd62a73b5b39df29fd460e1c4451c6e0e8af (diff) | |
download | perl-28e5dec85047e189010079efa89eed07bc9eddc8.tar.gz |
Return of the IVUV-preservation, now seems to be happy even
in Digital UNIX (the broken strtoul brokenness detection
seems to have been the fly in the ointment).
p4raw-id: //depot/perl@8138
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1208,6 +1208,10 @@ STATIC void S_sv_del_backref(pTHX_ SV *sv); # if defined(DEBUGGING) STATIC void S_del_sv(pTHX_ SV *p); # endif +# if !defined(NV_PRESERVES_UV) +STATIC int S_sv_2inuv_non_preserve(pTHX_ SV *sv, I32 numtype); +STATIC int S_sv_2iuv_non_preserve(pTHX_ SV *sv, I32 numtype); +# endif #endif #if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) |