p4raw-id: //depot/cfgperl@3883
%lld %16LX %qo
-You can find out whether your Perl supports long doubles via L<Config>:
+You can find out whether your Perl supports quads via L<Config>:
use Config;
- $Config{use64bits} and print "quads\n";
+ ($Config{use64bits} eq 'define' || $Config{longsize} == 8) &&
+ print "quads\n";
If Perl understands "long doubles" (this requires that the platform
supports long doubles), the flags
You can find out whether your Perl supports long doubles via L<Config>:
use Config;
- $Config{d_longdbl} and print "long doubles\n";
+ $Config{d_longdbl} eq 'define' && print "long doubles\n";
=item sqrt EXPR