package AFS::Utils; #------------------------------------------------------------------------------ # RCS-Id: "@(#)$Id: Utils.pm 881 2008-10-26 18:58:51Z nog $" # # Copyright © 2001-2008 Norbert E. Gruener # # This library is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. #------------------------------------------------------------------------------ use AFS; use vars qw(@ISA $VERSION @EXPORT_OK); require Exporter; @EXPORT_OK = qw( XSVERSION get_server_version get_syslib_version setpag sysname unlog ); @ISA = qw(Exporter AFS); $VERSION = '2.6.1'; 1;