| Current File : //usr/tmp/par-6c6566/cache-9ab9fe47781b3f807c8b3ee838b58c73318324f4/3da154fd.pm |
#line 1 "/usr/local/lib/perl5/5.20.0/i86pc-solaris/IO.pm"
#
package IO;
use XSLoader ();
use Carp;
use strict;
use warnings;
our $VERSION = "1.31";
XSLoader::load 'IO', $VERSION;
sub import {
shift;
warnings::warnif('deprecated', qq{Parameterless "use IO" deprecated})
if @_ == 0 ;
my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir);
eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l)
or croak $@;
}
1;
__END__
#line 68