summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-12-03 03:02:12 +0000
committermillert <millert@openbsd.org>2003-12-03 03:02:12 +0000
commitf64b279a78e059c1d242255e7603163a5f086337 (patch)
treee9b95d33a61c91f8bf5f1eab57610747075ec1ef /gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm
parentperl 5.8.2 from CPAN (diff)
downloadwireguard-openbsd-f64b279a78e059c1d242255e7603163a5f086337.tar.xz
wireguard-openbsd-f64b279a78e059c1d242255e7603163a5f086337.zip
Resolve conflicts for perl 5.8.2, remove old files, and add OpenBSD-specific scaffolding
Diffstat (limited to 'gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm')
-rw-r--r--gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm10
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm b/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm
index 63225f03629..63541bb04ab 100644
--- a/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm
+++ b/gnu/usr.bin/perl/ext/GDBM_File/GDBM_File.pm
@@ -31,6 +31,8 @@ http://www.gnu.org/order/ftp.html.
The available functions and the gdbm/perl interface need to be documented.
+The GDBM error number and error message interface needs to be added.
+
=head1 SEE ALSO
L<perl(1)>, L<DB_File(3)>, L<perldbmfilter>.
@@ -50,17 +52,23 @@ use XSLoader ();
@ISA = qw(Tie::Hash Exporter);
@EXPORT = qw(
GDBM_CACHESIZE
+ GDBM_CENTFREE
+ GDBM_COALESCEBLKS
GDBM_FAST
+ GDBM_FASTMODE
GDBM_INSERT
GDBM_NEWDB
GDBM_NOLOCK
+ GDBM_OPENMASK
GDBM_READER
GDBM_REPLACE
+ GDBM_SYNC
+ GDBM_SYNCMODE
GDBM_WRCREAT
GDBM_WRITER
);
-$VERSION = "1.06";
+$VERSION = "1.07";
sub AUTOLOAD {
my($constname);