summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-05-28 07:57:47 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-05-28 07:57:47 +0000
commit29778b0a112f48db42e9a1afb6e937e0ce9be444 (patch)
tree930570ddbf6cb7c3e16b142bc621954f7da001f6 /ext
parent36bbe248096ab718da92e52c9927b81877a3d388 (diff)
downloadperl-29778b0a112f48db42e9a1afb6e937e0ce9be444.tar.gz
avoid warnings in POSIX.pm (from Barrie Slaymaker)
p4raw-id: //depot/perl@6131
Diffstat (limited to 'ext')
-rw-r--r--ext/POSIX/POSIX.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm
index 9416f70809..d4d9c334b0 100644
--- a/ext/POSIX/POSIX.pm
+++ b/ext/POSIX/POSIX.pm
@@ -565,9 +565,9 @@ sub chmod {
sub fstat {
usage "fstat(fd)" if @_ != 1;
local *TMP;
- open(TMP, "<&$_[0]"); # Gross.
+ CORE::open(TMP, "<&$_[0]"); # Gross.
my @l = CORE::stat(TMP);
- close(TMP);
+ CORE::close(TMP);
@l;
}