summaryrefslogtreecommitdiff
path: root/lib/SDBM_File.pm
blob: 544f66f23731270bd35e5b7508132156df1df3d2 (plain)
1
2
3
4
5
6
7
8
9
package SDBM_File;

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

bootstrap SDBM_File;

1;