xref: /onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Kstat/Kstat.pm (revision 7298:b69e27387f74)
11341Sstevel#
21341Sstevel# CDDL HEADER START
31341Sstevel#
41341Sstevel# The contents of this file are subject to the terms of the
51410Salanbur# Common Development and Distribution License (the "License").
61410Salanbur# You may not use this file except in compliance with the License.
71341Sstevel#
81341Sstevel# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
91341Sstevel# or http://www.opensolaris.org/os/licensing.
101341Sstevel# See the License for the specific language governing permissions
111341Sstevel# and limitations under the License.
121341Sstevel#
131341Sstevel# When distributing Covered Code, include this CDDL HEADER in each
141341Sstevel# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
151341Sstevel# If applicable, add the following below this CDDL HEADER, with the
161341Sstevel# fields enclosed by brackets "[]" replaced with your own identifying
171341Sstevel# information: Portions Copyright [yyyy] [name of copyright owner]
181341Sstevel#
191341Sstevel# CDDL HEADER END
201341Sstevel#
211410Salanbur
221410Salanbur#
231410Salanbur# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
241410Salanbur# Use is subject to license terms.
251410Salanbur#
261410Salanbur
271341Sstevel#
281341Sstevel# Kstat.pm provides the bootstrap for the Sun::Solaris::Kstat module.
291341Sstevel#
301341Sstevel
311341Sstevelpackage Sun::Solaris::Kstat;
321341Ssteveluse strict;
331341Ssteveluse DynaLoader;
341341Ssteveluse vars qw($VERSION @ISA);
35*7298SMark.J.Nelson@Sun.COM$VERSION = '1.3';
361341Sstevel@ISA = qw(DynaLoader);
371341Sstevelbootstrap Sun::Solaris::Kstat $VERSION;
381341Sstevel1;
39