1# $Id: OSF.pm,v 1.4 2008/11/05 22:52:34 drhyde Exp $
2
3package #
4Devel::AssertOS::OSF;
5
6use Devel::CheckOS;
7
8$VERSION = '1.1';
9
10sub os_is { $^O eq 'dec_osf' ? 1 : 0; }
11
12sub expn { "OSF is also known as OSF/1, Digital Unix, and Tru64 Unix" }
13
14Devel::CheckOS::die_unsupported() unless(os_is());
15
16=head1 COPYRIGHT and LICENCE
17
18Copyright 2007 - 2008 David Cantrell
19
20This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively.
21
22=cut
23
241;
25