Once again syncing after too long an absence
[p5sagit/p5-mst-13.2.git] / lib / File / Spec.pm
index 40503c4..35707cc 100644 (file)
@@ -1,14 +1,15 @@
 package File::Spec;
 
 use strict;
-use vars qw(@ISA $VERSION);
+our(@ISA, $VERSION);
 
 $VERSION = 0.82 ;
 
 my %module = (MacOS   => 'Mac',
              MSWin32 => 'Win32',
              os2     => 'OS2',
-             VMS     => 'VMS');
+             VMS     => 'VMS',
+             epoc    => 'Epoc');
 
 my $module = $module{$^O} || 'Unix';
 require "File/Spec/$module.pm";