summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAristotle Pagaltzis <pagaltzis@gmx.de>2016-04-26 11:53:21 +0200
committerAristotle Pagaltzis <pagaltzis@gmx.de>2016-04-26 11:53:21 +0200
commit255a3e7b2026cd461a60bdc2ed8686b42847a3a0 (patch)
treeb1f0be0333b2cd480fc6c7f43bd4d748dad2592b
parent6f30c2648bf1dda7af5cc205448f8990d2383264 (diff)
downloadperl-255a3e7b2026cd461a60bdc2ed8686b42847a3a0.tar.gz
Correct lround situation comment in POSIX
-rw-r--r--ext/POSIX/lib/POSIX.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/POSIX/lib/POSIX.pm b/ext/POSIX/lib/POSIX.pm
index 8461943a2f..f0f0f9458b 100644
--- a/ext/POSIX/lib/POSIX.pm
+++ b/ext/POSIX/lib/POSIX.pm
@@ -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 );