diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-07-27 01:17:48 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-07-27 01:17:48 +0000 |
commit | 8add82fcce53822c8119c2a311f526a412bbc9c7 (patch) | |
tree | 7929a2481a6deebd0cca064719747978a655984d /ext/IO/IO.pm | |
parent | c954a603b8f02c172ffe0fd3503b4d7ca983ad99 (diff) | |
download | perl-8add82fcce53822c8119c2a311f526a412bbc9c7.tar.gz |
Add IO extension
Diffstat (limited to 'ext/IO/IO.pm')
-rw-r--r-- | ext/IO/IO.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/IO/IO.pm b/ext/IO/IO.pm new file mode 100644 index 0000000000..645837bbf8 --- /dev/null +++ b/ext/IO/IO.pm @@ -0,0 +1,12 @@ +# + +package IO; + +use IO::Handle; +use IO::Seekable; +use IO::File; +use IO::Pipe; +use IO::Socket; + +1; + |