diff options
author | Peter Prymmer <PPrymmer@factset.com> | 2000-12-14 07:50:20 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-15 15:17:49 +0000 |
commit | f168a5e7e53f96f3b52398f0f6fcaaf6eda02875 (patch) | |
tree | 78c440671dcbd55d79a346394d09b82be72c3839 /ext/Errno | |
parent | 98a29390254d3cb423096b6282689bfe2a7e6a13 (diff) | |
download | perl-f168a5e7e53f96f3b52398f0f6fcaaf6eda02875.tar.gz |
s/use vars qw\(/our(/ for OS/390 extension builds
Message-ID: <Pine.OSF.4.10.10012141548200.57557-100000@aspara.forte.com>
p4raw-id: //depot/perl@8126
Diffstat (limited to 'ext/Errno')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index 9ea60416f6..3e34b90bee 100644 --- a/ext/Errno/Errno_pm.PL +++ b/ext/Errno/Errno_pm.PL @@ -2,9 +2,7 @@ use ExtUtils::MakeMaker; use Config; use strict; -use vars qw($VERSION); - -$VERSION = "1.111"; +our $VERSION = "1.111"; my %err = (); @@ -185,7 +183,7 @@ sub write_errno_pm { # package Errno; -use vars qw(\@EXPORT_OK \%EXPORT_TAGS \@ISA \$VERSION \%errno \$AUTOLOAD); +our (\@EXPORT_OK,\%EXPORT_TAGS,\@ISA,\$VERSION,\%errno,\$AUTOLOAD); use Exporter (); use Config; use strict; |