# # Copyright 2006 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # # Kstat.pm provides the bootstrap for the Sun::Solaris::Kstat module. # package Sun::Solaris::Kstat; use strict; use DynaLoader; use vars qw($VERSION @ISA); $VERSION = '1.3'; @ISA = qw(DynaLoader); bootstrap Sun::Solaris::Kstat $VERSION; 1;