diff options
author | Paul Marquess <pmarquess@bfsec.bt.co.uk> | 1996-02-06 14:09:49 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-02-06 14:09:49 +0000 |
commit | 73c78b0a2be8a786003c2c964410ac778b021b43 (patch) | |
tree | 6a473194ed692f1d41bcc0773600a004bd197270 /ext/Safe | |
parent | 785da04d1d58a83562b02a5c8764cea0dc6ceede (diff) | |
download | perl-73c78b0a2be8a786003c2c964410ac778b021b43.tar.gz |
VERSION Patch
Diffstat (limited to 'ext/Safe')
-rw-r--r-- | ext/Safe/Safe.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/Safe/Safe.pm b/ext/Safe/Safe.pm index 5f24d1928a..0fafcbe741 100644 --- a/ext/Safe/Safe.pm +++ b/ext/Safe/Safe.pm @@ -1,8 +1,11 @@ package Safe; + +use vars qw($VERSION @ISA @EXPORT_OK); + require Exporter; require DynaLoader; use Carp; -$VERSION = $VERSION = "1.00"; +$VERSION = "1.00"; @ISA = qw(Exporter DynaLoader); @EXPORT_OK = qw(op_mask ops_to_mask mask_to_ops opcode opname opdesc MAXO emptymask fullmask); @@ -384,7 +387,7 @@ EOT return safe_call_sv($root, $mask, $evalsub); } -bootstrap Safe; +bootstrap Safe $VERSION; $default_mask = fullmask; my $name; |