diff options
author | 2001-05-24 18:34:40 +0000 | |
---|---|---|
committer | 2001-05-24 18:34:40 +0000 | |
commit | c5dcfd37a3164fb53e0dfad8933a4e7c5f31c639 (patch) | |
tree | 3be355f56e8f30e0beb22d375a75a1e8ca129d25 /gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm | |
parent | stock perl 5.6.1 (diff) | |
download | wireguard-openbsd-c5dcfd37a3164fb53e0dfad8933a4e7c5f31c639.tar.xz wireguard-openbsd-c5dcfd37a3164fb53e0dfad8933a4e7c5f31c639.zip |
merge in perl 5.6.1 with our local changes
Diffstat (limited to 'gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm')
-rw-r--r-- | gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm b/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm index ab866eecabe..310243c736e 100644 --- a/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm +++ b/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm @@ -40,6 +40,7 @@ L<perl(1)>, L<DB_File(3)>, L<perldbmfilter>. package GDBM_File; use strict; +use warnings; our($VERSION, @ISA, @EXPORT, $AUTOLOAD); require Carp; @@ -53,13 +54,14 @@ use XSLoader (); GDBM_FAST GDBM_INSERT GDBM_NEWDB + GDBM_NOLOCK GDBM_READER GDBM_REPLACE GDBM_WRCREAT GDBM_WRITER ); -$VERSION = "1.03"; +$VERSION = "1.05"; sub AUTOLOAD { my($constname); |