Devel::AssertOS::QNX - Devel::AssertOS::QNX documentation


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

Index


Code Index:

COPYRIGHT and LICENCE

Top


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

# $Id: QNX.pm,v 1.2 2008/10/27 20:31:21 drhyde Exp $

package Devel::AssertOS::QNX;

use Devel::CheckOS;

$VERSION = '1.2';

sub matches { return qw(QNX::v4 QNX::Neutrino); }
sub os_is { Devel::CheckOS::os_is(matches()); }
sub expn {
join("\n", 
"All versions of QNX match this, as well as (possibly) a more specific",
"match"
)
}
Devel::CheckOS::die_unsupported() unless(os_is());

1;