summaryrefslogtreecommitdiff
path: root/lib/FileHandle.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-23 12:23:48 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-23 12:23:48 +0000
commit17f410f9a3a4ae9cda502b59b391e6653db436ce (patch)
tree81919bfb78d3c75ad236c4f41f4ea13fae2c010f /lib/FileHandle.pm
parenteb64745eccc492010733ac012342c6cacc81e103 (diff)
downloadperl-17f410f9a3a4ae9cda502b59b391e6653db436ce.tar.gz
s/use vars/our/g modules that aren't independently maintained on CPAN
p4raw-id: //depot/perl@4860
Diffstat (limited to 'lib/FileHandle.pm')
-rw-r--r--lib/FileHandle.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/FileHandle.pm b/lib/FileHandle.pm
index eec9b61f31..34c3475d9c 100644
--- a/lib/FileHandle.pm
+++ b/lib/FileHandle.pm
@@ -1,8 +1,8 @@
package FileHandle;
-use 5.003_11;
+use 5.005_64;
use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
+our($VERSION, @ISA, @EXPORT, @EXPORT_OK);
$VERSION = "2.00";