diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-07 10:27:55 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-07 10:27:55 +0000 |
commit | 21e970cc3286bbc90a29bffea6823d080d88c86d (patch) | |
tree | a45cfc6509ffe7c5dce9ed09312882fd7c254c2f /ext | |
parent | 272b464812029afc110beaa16e04de471ae4febe (diff) | |
download | perl-21e970cc3286bbc90a29bffea6823d080d88c86d.tar.gz |
fix undocumented IO::Handle functions as suggested
by cj10@cam.ac.uk
p4raw-id: //depot/perl@3646
Diffstat (limited to 'ext')
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 30ee2e5989..9b5dd6570e 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -547,18 +547,18 @@ sub format_write { } } +# XXX undocumented sub fcntl { @_ == 3 || croak 'usage: $io->fcntl( OP, VALUE );'; - my ($io, $op, $val) = @_; - my $r = fcntl($io, $op, $val); - defined $r && $r eq "0 but true" ? 0 : $r; + my ($io, $op) = @_; + return fcntl($io, $op, $_[2]); } +# XXX undocumented sub ioctl { @_ == 3 || croak 'usage: $io->ioctl( OP, VALUE );'; - my ($io, $op, $val) = @_; - my $r = ioctl($io, $op, $val); - defined $r && $r eq "0 but true" ? 0 : $r; + my ($io, $op) = @_; + return ioctl($io, $op, $_[2]); } # this sub is for compatability with older releases of IO that used |