From: Jarkko Hietaniemi Date: Sun, 5 Mar 2000 18:44:37 +0000 (+0000) Subject: the monster cpp expression needs to be on one line to X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b33832a069167d6a3c76b6b99091e3f831db013d;p=p5sagit%2Fp5-mst-13.2.git the monster cpp expression needs to be on one line to appease makedepend p4raw-id: //depot/cfgperl@5552 --- diff --git a/toke.c b/toke.c index 9af9f4a..805c9e9 100644 --- a/toke.c +++ b/toke.c @@ -6939,10 +6939,9 @@ Perl_scan_num(pTHX_ char *start) /* make an sv from the string */ sv = NEWSV(92,0); -#if defined(USE_64_BIT_INT) && \ - (!defined(HAS_STRTOLL)|| !defined(HAS_STRTOULL)) || \ - !defined(USE_64_BIT_INT) && \ - (!defined(HAS_STRTOL) || !defined(HAS_STRTOUL)) + /* unfortunately this monster needs to be on one line or + makedepend will be confused. */ +#if (defined(USE_64_BIT_INT) && (!defined(HAS_STRTOLL)|| !defined(HAS_STRTOULL))) || (!defined(USE_64_BIT_INT) && (!defined(HAS_STRTOL) || !defined(HAS_STRTOUL))) /* No working strto[u]l[l]. Since atoi() doesn't do range checks,