summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2000-12-14 18:38:57 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-12-15 02:49:42 +0000
commitd0e6d399d7d5c2c9072a29da40b2cf4e9246353f (patch)
treee1fff34110b68ccc3b66a30e5e44a62023106706 /perl.h
parent16b7a9a47be196cb33bf757faad24e73ceffc2fc (diff)
downloadperl-d0e6d399d7d5c2c9072a29da40b2cf4e9246353f.tar.gz
strtoq, strtou(q|ll|l) testing (was [PATCH] faster and 64 bit preserving arithmetic)
Message-ID: <20001214183857.B97909@plum.flirble.org> p4raw-id: //depot/perl@8120
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index 42c5246cc4..9c6883ba0e 100644
--- a/perl.h
+++ b/perl.h
@@ -3240,6 +3240,9 @@ typedef struct am_table_short AMTS;
# if !defined(Strtol) && defined(HAS_STRTOLL)
# define Strtol strtoll
# endif
+# if !defined(Strtol) && defined(HAS_STRTOQ)
+# define Strtol strtoq
+# endif
/* is there atoq() anywhere? */
#endif
#if !defined(Strtol) && defined(HAS_STRTOL)