summaryrefslogtreecommitdiff
path: root/ext/IO/IO.pm
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-10-06 22:08:34 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-10-06 22:08:34 +0000
commit2a0cf7534305b208c8a33f74a84757c0894c6439 (patch)
tree2db0991e7fe414b5826d85851226722ffb03c7ad /ext/IO/IO.pm
parentf6aff53ad72449dfefc5f6d9d303886bbb4ae545 (diff)
downloadperl-2a0cf7534305b208c8a33f74a84757c0894c6439.tar.gz
Updated to IO-1.12.
Diffstat (limited to 'ext/IO/IO.pm')
-rw-r--r--ext/IO/IO.pm27
1 files changed, 14 insertions, 13 deletions
diff --git a/ext/IO/IO.pm b/ext/IO/IO.pm
index cb6d5d89f0..1ba05ca916 100644
--- a/ext/IO/IO.pm
+++ b/ext/IO/IO.pm
@@ -2,14 +2,6 @@
package IO;
-use IO::Handle;
-use IO::Seekable;
-use IO::File;
-use IO::Pipe;
-use IO::Socket;
-
-1;
-
=head1 NAME
IO - load various IO modules
@@ -23,13 +15,22 @@ IO - load various IO modules
C<IO> provides a simple mechanism to load all of the IO modules at one go.
Currently this includes:
- IO::Handle
- IO::Seekable
- IO::File
- IO::Pipe
- IO::Socket
+ IO::Handle
+ IO::Seekable
+ IO::File
+ IO::Pipe
+ IO::Socket
For more information on any of these modules, please see its respective
documentation.
=cut
+
+use IO::Handle;
+use IO::Seekable;
+use IO::File;
+use IO::Pipe;
+use IO::Socket;
+
+1;
+