diff options
Diffstat (limited to 'gnu/usr.bin/perl/ext/ByteLoader/ByteLoader.pm')
-rw-r--r-- | gnu/usr.bin/perl/ext/ByteLoader/ByteLoader.pm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/ext/ByteLoader/ByteLoader.pm b/gnu/usr.bin/perl/ext/ByteLoader/ByteLoader.pm new file mode 100644 index 00000000000..286d74697ee --- /dev/null +++ b/gnu/usr.bin/perl/ext/ByteLoader/ByteLoader.pm @@ -0,0 +1,40 @@ +package ByteLoader; + +use XSLoader (); + +$VERSION = 0.03; + +XSLoader::load 'ByteLoader', $VERSION; + +# Preloaded methods go here. + +1; +__END__ + +=head1 NAME + +ByteLoader - load byte compiled perl code + +=head1 SYNOPSIS + + use ByteLoader 0.03; + <byte code> + + use ByteLoader 0.03; + <byte code> + +=head1 DESCRIPTION + +This module is used to load byte compiled perl code. It uses the source +filter mechanism to read the byte code and insert it into the compiled +code at the appropriate point. + +=head1 AUTHOR + +Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others. + +=head1 SEE ALSO + +perl(1). + +=cut |