diff options
Diffstat (limited to 'ext/FileHandle/FileHandle.pm')
-rw-r--r-- | ext/FileHandle/FileHandle.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/FileHandle/FileHandle.pm b/ext/FileHandle/FileHandle.pm index d479dae08c..ada75a301f 100644 --- a/ext/FileHandle/FileHandle.pm +++ b/ext/FileHandle/FileHandle.pm @@ -147,8 +147,7 @@ It will also croak() if accidentally called in a scalar context. =head1 SEE ALSO L<perlfunc>, -L<perlop/"I/O Operators">, -L<POSIX/"FileHandle"> +L<perlop/"I/O Operators">. =head1 BUGS @@ -169,6 +168,8 @@ require Exporter; require DynaLoader; @ISA = qw(Exporter DynaLoader); +require IO::Handle; # Kludge for bareword handles + $VERSION = "1.00" ; @EXPORT = qw(_IOFBF _IOLBF _IONBF); |