summaryrefslogtreecommitdiff
path: root/lib/NDBM_File.pm
blob: 637001f71c7e1fce57c39d6d368ad3f7394d3975 (plain)
1
2
3
4
5
6
7
8
9
package NDBM_File;

require Exporter;
@ISA = (Exporter, DynamicLoader);
@EXPORT = split(' ', 'new fetch store delete firstkey nextkey error clearerr');

bootstrap NDBM_File;

1;