package Cpanel::Bits; # cpanel - Cpanel/Bits.pm Copyright(c) 2010 cPanel, Inc. # All Rights Reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited my $bits; sub setbits { if ( !$bits ) { $bits = shift; } } sub getbits { $bits; } 1;