From: Jarkko Hietaniemi Date: Sun, 16 Jan 2000 19:21:18 +0000 (+0000) Subject: strtoll works better ternary. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=38192672c8214bacabd25e094d76f7e2728d5de6;p=p5sagit%2Fp5-mst-13.2.git strtoll works better ternary. p4raw-id: //depot/cfgperl@4809 --- diff --git a/perl.h b/perl.h index f0292f3..a6958f4 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