diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-20 17:10:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-20 17:10:02 +0000 |
commit | 698828ad8b31daca4e44400fa4bef1ac74a9a8f5 (patch) | |
tree | 51d9c40b9593b504a7e70413fd23b60cb50b12c3 /ext/GDBM_File | |
parent | e069d1ca5f35f504fdba3c758c942665839fd433 (diff) | |
download | perl-698828ad8b31daca4e44400fa4bef1ac74a9a8f5.tar.gz |
strict-w-proof the ?DBM_File, from Paul Marquess.
p4raw-id: //depot/perl@8848
Diffstat (limited to 'ext/GDBM_File')
-rw-r--r-- | ext/GDBM_File/GDBM_File.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/GDBM_File/GDBM_File.pm b/ext/GDBM_File/GDBM_File.pm index fe87dd0856..074b976386 100644 --- a/ext/GDBM_File/GDBM_File.pm +++ b/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; |