This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Correct lround situation comment in POSIX
authorAristotle Pagaltzis <pagaltzis@gmx.de>
Tue, 26 Apr 2016 09:53:21 +0000 (11:53 +0200)
committerAristotle Pagaltzis <pagaltzis@gmx.de>
Tue, 26 Apr 2016 09:53:21 +0000 (11:53 +0200)
ext/POSIX/lib/POSIX.pm

index 8461943..f0f0f94 100644 (file)
@@ -446,10 +446,9 @@ my %other_export_tags = (
 
   our @EXPORT_OK = (qw(close lchown nice open pipe read sleep times write
                       printf sprintf lround),
-                    # lround() should really be in @EXPORT and in the
-                    # :math_h_c99 tag, but we're too far into the 5.24 code
-                    # freeze for that to be done now. This can be revisited in
-                    # the 5.25.x cycle.
+                    # lround() should really be in the :math_h_c99 tag, but
+                    # we're too far into the 5.24 code freeze for that to be
+                    # done now. This can be revisited in the 5.25.x cycle.
                    grep {!exists $export{$_}} keys %reimpl, keys %replacement, keys %export_ok);
 
   our %EXPORT_TAGS = ( %default_export_tags, %other_export_tags );