Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perlmod / Linux-x86_64 / Bit / Vector.pm
CommitLineData
86530b38
AT
1
2###############################################################################
3## ##
4## Copyright (c) 1995 - 2004 by Steffen Beyer. ##
5## All rights reserved. ##
6## ##
7## This package is free software; you can redistribute it ##
8## and/or modify it under the same terms as Perl itself. ##
9## ##
10###############################################################################
11
12package Bit::Vector;
13
14use strict;
15use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION @CONFIG);
16
17require Exporter;
18require DynaLoader;
19
20@ISA = qw(Exporter DynaLoader);
21
22@EXPORT = qw();
23
24@EXPORT_OK = qw();
25
26$VERSION = '6.4';
27
28bootstrap Bit::Vector $VERSION;
29
301;
31
32__END__
33