summaryrefslogtreecommitdiff
path: root/Master/xemtex/perl/lib/bytes_heavy.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/xemtex/perl/lib/bytes_heavy.pl')
-rw-r--r--Master/xemtex/perl/lib/bytes_heavy.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/Master/xemtex/perl/lib/bytes_heavy.pl b/Master/xemtex/perl/lib/bytes_heavy.pl
new file mode 100644
index 00000000000..47bdbf91b0d
--- /dev/null
+++ b/Master/xemtex/perl/lib/bytes_heavy.pl
@@ -0,0 +1,8 @@
+package bytes;
+
+sub length ($) {
+ BEGIN { bytes::import() }
+ return CORE::length($_[0]);
+}
+
+1;