diff options
author | 1999-02-15 05:11:22 +0000 | |
---|---|---|
committer | 1999-02-15 05:11:22 +0000 | |
commit | 1b727fc67e72eb4d75dd4ccd8044b7ad47e33c61 (patch) | |
tree | a7b6e3f4a19bea44d82250b056a0c90889023b94 /lib/libc/db/btree/bt_overflow.c | |
parent | We don't need to include xfs_extern.h (diff) | |
download | wireguard-openbsd-1b727fc67e72eb4d75dd4ccd8044b7ad47e33c61.tar.xz wireguard-openbsd-1b727fc67e72eb4d75dd4ccd8044b7ad47e33c61.zip |
o Minor changes from db.1.86 (sleepycat). Does not include the new hash
routines since they cannot read a hashed .db file from the old code.
Most of these files just have their RCS/SCCS tags standardized.
Note that mpool.3 has not been updated to reflect the new mpool interface.
o Add a real dbm(3) manpage
Diffstat (limited to 'lib/libc/db/btree/bt_overflow.c')
-rw-r--r-- | lib/libc/db/btree/bt_overflow.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libc/db/btree/bt_overflow.c b/lib/libc/db/btree/bt_overflow.c index 23876f1d6fe..1faaa79a503 100644 --- a/lib/libc/db/btree/bt_overflow.c +++ b/lib/libc/db/btree/bt_overflow.c @@ -1,3 +1,5 @@ +/* $OpenBSD: bt_overflow.c,v 1.5 1999/02/15 05:11:23 millert Exp $ */ + /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: bt_overflow.c,v 1.4 1998/08/14 21:39:18 deraadt Exp $"; +#if 0 +static char sccsid[] = "@(#)bt_overflow.c 8.5 (Berkeley) 7/16/94"; +#else +static char rcsid[] = "$OpenBSD: bt_overflow.c,v 1.5 1999/02/15 05:11:23 millert Exp $"; +#endif #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> |