summaryrefslogtreecommitdiff
path: root/ext/Fcntl
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 /ext/Fcntl
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 'ext/Fcntl')
-rw-r--r--ext/Fcntl/Fcntl.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Fcntl/Fcntl.pm b/ext/Fcntl/Fcntl.pm
index 1eb14e9eb2..43bec9903e 100644
--- a/ext/Fcntl/Fcntl.pm
+++ b/ext/Fcntl/Fcntl.pm
@@ -42,7 +42,7 @@ what constants are implemented in your system.
=cut
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $AUTOLOAD);
+our($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $AUTOLOAD);
require Exporter;
use XSLoader ();