From a0c524e9e6047aa20d11f260e92a043b3f3e5dc4 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sun, 5 Mar 2000 00:07:21 +0000 Subject: [PATCH] Reformat the fearful cpp expression to be a little bit less fearful. p4raw-id: //depot/cfgperl@5528 --- toke.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 */ -- 2.7.4