Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / 5.8.0 / bytes_heavy.pl
CommitLineData
86530b38
AT
1package bytes;
2
3sub length ($) {
4 BEGIN { bytes::import() }
5 return CORE::length($_[0]);
6}
7
81;