mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
8 lines
101 B
Perl
8 lines
101 B
Perl
package bytes;
|
|
|
|
sub length ($) {
|
|
BEGIN { bytes::import() }
|
|
return CORE::length($_[0]);
|
|
}
|
|
|
|
1;
|