fixes for switching files in the debugger (from Ilya Zakharevich)
[p5sagit/p5-mst-13.2.git] / lib / byte_heavy.pl
CommitLineData
5bc28da9 1package byte;
2
393fec97 3sub length ($) {
4 BEGIN { byte::import() }
5 return CORE::length($_[0]);
5bc28da9 6}
7
81;