Re: Not OK: perl v5.9.0 +DEVEL17881 on i386-freebsd 4.6-release (UNINSTALLED)
[p5sagit/p5-mst-13.2.git] / lib / bytes_heavy.pl
1 package bytes;
2
3 sub length ($) {
4     BEGIN { bytes::import() }
5     return CORE::length($_[0]);
6 }
7
8 1;