/usr/lib64/perl5/auto/Storable
NameSizeModeActions
.packlist1800644editdlrm
autosplit.ix5190644editdlrm
BIN_VERSION_NV.al3480644editdlrm
BIN_WRITE_VERSION_NV.al3720644editdlrm
CAN_FLOCK.al5550644editdlrm
fd_retrieve.al6730644editdlrm
file_magic.al6030644editdlrm
freeze.al4010644editdlrm
lock_nstore.al4100644editdlrm
lock_retrieve.al3870644editdlrm
lock_store.al4010644editdlrm
logcarp.al2950644editdlrm
logcroak.al4380644editdlrm
nfreeze.al3610644editdlrm
nstore.al3660644editdlrm
nstore_fd.al4060644editdlrm
read_magic.al18310644editdlrm
retrieve.al4160644editdlrm
show_file_magic.al8010644editdlrm
Storable.so859360755editdlrm
store.al5420644editdlrm
store_fd.al4480644editdlrm
thaw.al6650644editdlrm
_freeze.al7060644editdlrm
_retrieve.al9090644editdlrm
_store.al13280644editdlrm
_store_fd.al9010644editdlrm
Edit: /usr/lib64/perl5/auto/Storable/file_magic.al (603B)
# NOTE: Derived from ../../lib/Storable.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Storable; #line 118 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/file_magic.al)" sub file_magic { my $file = shift; my $fh = new FileHandle; open($fh, "<". $file) || die "Can't open '$file': $!"; binmode($fh); defined(sysread($fh, my $buf, 32)) || die "Can't read from '$file': $!"; close($fh); $file = "./$file" unless $file; # ensure TRUE value return read_magic($buf, $file); } # end of Storable::file_magic 1;