diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-23 12:23:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-23 12:23:48 +0000 |
commit | 17f410f9a3a4ae9cda502b59b391e6653db436ce (patch) | |
tree | 81919bfb78d3c75ad236c4f41f4ea13fae2c010f /lib/Math/Trig.pm | |
parent | eb64745eccc492010733ac012342c6cacc81e103 (diff) | |
download | perl-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/Math/Trig.pm')
-rw-r--r-- | lib/Math/Trig.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Math/Trig.pm b/lib/Math/Trig.pm index c659137eba..3a592b47c4 100644 --- a/lib/Math/Trig.pm +++ b/lib/Math/Trig.pm @@ -7,13 +7,12 @@ require Exporter; package Math::Trig; +use 5.005_64; use strict; use Math::Complex qw(:trig); -use vars qw($VERSION $PACKAGE - @ISA - @EXPORT @EXPORT_OK %EXPORT_TAGS); +our($VERSION, $PACKAGE, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); @ISA = qw(Exporter); |