freebsd-dev/contrib/perl5/lib/bytes_heavy.pl

9 lines
101 B
Perl
Raw Normal View History

2000-06-25 11:04:01 +00:00
package bytes;
sub length ($) {
BEGIN { bytes::import() }
return CORE::length($_[0]);
}
1;