mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
9 lines
101 B
Perl
9 lines
101 B
Perl
package bytes;
|
|
|
|
sub length ($) {
|
|
BEGIN { bytes::import() }
|
|
return CORE::length($_[0]);
|
|
}
|
|
|
|
1;
|