projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
36bbe24
)
avoid warnings in POSIX.pm (from Barrie Slaymaker)
Gurusamy Sarathy [Sun, 28 May 2000 07:57:47 +0000 (07:57 +0000)]
p4raw-id: //depot/perl@6131
ext/POSIX/POSIX.pm
patch
|
blob
|
blame
|
history
diff --git
a/ext/POSIX/POSIX.pm
b/ext/POSIX/POSIX.pm
index
9416f70
..
d4d9c33
100644
(file)
--- 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;
}