From: Jarkko Hietaniemi Date: Sun, 5 Mar 2000 00:07:21 +0000 (+0000) Subject: Reformat the fearful cpp expression to be a little bit less fearful. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a0c524e9e6047aa20d11f260e92a043b3f3e5dc4;p=p5sagit%2Fp5-mst-13.2.git Reformat the fearful cpp expression to be a little bit less fearful. p4raw-id: //depot/cfgperl@5528 --- diff --git a/toke.c b/toke.c index 16e3788..993f091 100644 --- a/toke.c +++ b/toke.c @@ -6684,8 +6684,10 @@ Perl_scan_num(pTHX_ char *start) register char *s = start; /* current position in buffer */ register char *d; /* destination in temp buffer */ register char *e; /* end of temp buffer */ -#if (defined(USE_64_BIT_INT) && (!defined(HAS_STRTOLL)|| !defined(HAS_STRTOULL))) || \ - (!defined(USE_64_BIT_INT) && (!defined(HAS_STRTOL) || !defined(HAS_STRTOUL))) +#if ( defined(USE_64_BIT_INT) && \ + (!defined(HAS_STRTOLL)|| !defined(HAS_STRTOULL))) || \ + (!defined(USE_64_BIT_INT) && \ + (!defined(HAS_STRTOL) || !defined(HAS_STRTOUL))) IV tryiv; /* used to see if it can be an IV */ #endif NV value; /* number read, as a double */