summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-01-16 19:21:18 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-01-16 19:21:18 +0000
commit38192672c8214bacabd25e094d76f7e2728d5de6 (patch)
treeae7000690aae48896a8e6274298554ad5e6c1be0 /perl.h
parent76d49b1cacfde5868001c5aa0ec48417c762179b (diff)
downloadperl-38192672c8214bacabd25e094d76f7e2728d5de6.tar.gz
strtoll works better ternary.
p4raw-id: //depot/cfgperl@4809
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index f0292f31b6..a6958f4c95 100644
--- a/perl.h
+++ b/perl.h
@@ -2987,7 +2987,7 @@ typedef struct am_table_short AMTS;
#if !defined(Atol) && defined(USE_LONG_LONG) && defined(HAS_LONG_LONG)
# if !defined(Atol) && defined(HAS_STRTOLL)
-# define Atol(s) strtoll(s, (char*)0)
+# define Atol(s) strtoll(s, (char*)0, 10)
# endif
# if !defined(Atol) && defined(HAS_ATOLL)
# define Atol atoll