IRIX cpp is fussy.
authorJarkko Hietaniemi <jhi@iki.fi>
Sun, 5 Mar 2000 18:24:32 +0000 (18:24 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 5 Mar 2000 18:24:32 +0000 (18:24 +0000)
p4raw-id: //depot/cfgperl@5551

toke.c

diff --git a/toke.c b/toke.c
index a601016..9af9f4a 100644 (file)
--- a/toke.c
+++ b/toke.c
@@ -6939,10 +6939,10 @@ 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)))
+#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,