This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add a note about installhtml
[perl5.git] / lib / vmsish.pm
index bbaf4f7..4907ad3 100644 (file)
@@ -1,5 +1,7 @@
 package vmsish;
 
+our $VERSION = '1.01';
+
 =head1 NAME
 
 vmsish - Perl pragma to control VMS-specific language features
@@ -115,6 +117,8 @@ sub bits {
     my $bits = 0;
     my $sememe;
     foreach $sememe (@_) {
+       # Those hints are defined in vms/vmsish.h :
+       # HINT_M_VMSISH_STATUS and HINT_M_VMSISH_TIME
         $bits |= 0x40000000, next if $sememe eq 'status' || $sememe eq '$?';
        $bits |= 0x80000000, next if $sememe eq 'time';
     }