Update File::Spec::VMS and tests
[p5sagit/p5-mst-13.2.git] / lib / bytes.pm
index e8ab16f..ae7b5fb 100644 (file)
@@ -1,11 +1,13 @@
 package bytes;
 
+$bytes::hint_bits = 0x00000008;
+
 sub import {
-    $^H |= 0x00000008;
+    $^H |= $bytes::hint_bits;
 }
 
 sub unimport {
-    $^H &= ~0x00000008;
+    $^H &= ~$bytes::hint_bits;
 }
 
 sub AUTOLOAD {