update embedvar.h
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / ByteLoader.pm
1 package ByteLoader;
2
3 require DynaLoader;
4
5 @ISA = qw(DynaLoader);
6
7 $VERSION = 0.01;
8
9 bootstrap ByteLoader $VERSION;
10
11 # Preloaded methods go here.
12
13 1;
14 __END__
15
16 =head1 NAME
17
18 ByteLoader - load byte compiled perl code
19
20 =head1 SYNOPSIS
21
22   use ByteLoader 0.01;
23   <byte code>
24
25   use ByteLoader 0.01;
26   <byte code>
27
28 =head1 DESCRIPTION
29
30 This module is used to load byte compiled perl code. It uses the source
31 filter mechanism to read the byte code and insert it into the compiled
32 code at the appropriate point.
33
34 =head1 AUTHOR
35
36 Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
37
38 =head1 SEE ALSO
39
40 perl(1).
41
42 =cut