[win32] merge change#897 from maintbranch
[p5sagit/p5-mst-13.2.git] / ext / NDBM_File / NDBM_File.pm
CommitLineData
a0d0e21e 1package NDBM_File;
2
43c9fafc 3BEGIN {
4 if ($] >= 5.002) {
5 use strict;
6 }
7}
96318ac8 8use vars qw($VERSION @ISA);
9
10require Tie::Hash;
a0d0e21e 11require DynaLoader;
a0d0e21e 12
96318ac8 13@ISA = qw(Tie::Hash DynaLoader);
14
15$VERSION = "1.00";
c07a80fd 16
96318ac8 17bootstrap NDBM_File $VERSION;
a0d0e21e 18
191;
20
21__END__
a5f75d66 22
23=head1 NAME
24
25NDBM_File - Tied access to ndbm files
26
27=head1 SYNOPSIS
28
29 use NDBM_File;
30
c954a603 31 tie(%h, 'NDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
a5f75d66 32
33 untie %h;
34
35=head1 DESCRIPTION
36
37See L<perlfunc/tie>
38
39=cut