diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-02 14:52:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-02 14:52:40 +0000 |
commit | 6e58d65cdee942efacbebb436841cff48d4c4061 (patch) | |
tree | eb6a19539f37a865307503d47d2ea84fc45e1be3 /Configure | |
parent | bd4fc1f042e08965c82768f3b6911e13617c4bb2 (diff) | |
download | perl-6e58d65cdee942efacbebb436841cff48d4c4061.tar.gz |
AIX long long probing requires LL suffix for
the ll constant. The suffix doesn't seem
to bother other ll platforms.
p4raw-id: //depot/cfgperl@3891
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon Aug 2 15:32:21 EET DST 1999 [metaconfig 3.0 PL70] +# Generated on Mon Aug 2 17:42:55 EET DST 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -6789,7 +6789,7 @@ if $test X"$sPRId64" = X -a X"$d_longlong" = X"$define" -a X"$longlongsize" = X8 #include <sys/types.h> #include <stdio.h> int main() { - long long q = 12345678901; + long long q = 12345678901LL; /* AIX cc requires the LL prefix. */ printf("%lld\n", q); } EOCP |