diff options
Diffstat (limited to 'lib/SDBM_File.pm')
-rw-r--r-- | lib/SDBM_File.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/SDBM_File.pm b/lib/SDBM_File.pm new file mode 100644 index 0000000000..470d891279 --- /dev/null +++ b/lib/SDBM_File.pm @@ -0,0 +1,9 @@ +package SDBM_File; + +require Exporter; +@ISA = (Exporter, DynamicLoader); +@EXPORT = split(' ', 'new fetch store delete firstkey nextkey error clearerr'); + +bootstrap SDBM_File; + +1; |