diff options
Diffstat (limited to 'Master/tlpkg/tlperl0/lib/String/CRC32.pm')
-rwxr-xr-x | Master/tlpkg/tlperl0/lib/String/CRC32.pm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl0/lib/String/CRC32.pm b/Master/tlpkg/tlperl0/lib/String/CRC32.pm new file mode 100755 index 00000000000..42687369ee8 --- /dev/null +++ b/Master/tlpkg/tlperl0/lib/String/CRC32.pm @@ -0,0 +1,19 @@ + +package String::CRC32; + +require Exporter; +require DynaLoader; + +@ISA = qw(Exporter DynaLoader); + +$VERSION = 1.4; + +# Items to export into callers namespace by default +@EXPORT = qw(crc32); + +# Other items we are prepared to export if requested +@EXPORT_OK = qw(); + +bootstrap String::CRC32; + +1; |