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