summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl0/lib/String/CRC32.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl0/lib/String/CRC32.pm')
-rwxr-xr-xMaster/tlpkg/tlperl0/lib/String/CRC32.pm19
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;