summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-06 05:00:44 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-06 05:00:44 +0000
commit65f190625df5c430dbe5dc68ccef865b33839973 (patch)
tree7923365b9dfa49a2a2f8ec67abce9d09b32ad514 /toke.c
parent68c887af8bbbe8aaa5d726ce35fbbb66c21b6301 (diff)
downloadperl-65f190625df5c430dbe5dc68ccef865b33839973.tar.gz
integrate cfgperl changes into mainline
p4raw-id: //depot/perl@5570
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/toke.c b/toke.c
index 8b3a69f951..ac74ba089f 100644
--- a/toke.c
+++ b/toke.c
@@ -6938,10 +6938,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,