diff options
Diffstat (limited to 'lib/libc/db/hash')
-rw-r--r-- | lib/libc/db/hash/hash.c | 10 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_bigkey.c | 10 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_buf.c | 10 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_func.c | 10 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_log2.c | 10 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_page.c | 10 |
6 files changed, 6 insertions, 54 deletions
diff --git a/lib/libc/db/hash/hash.c b/lib/libc/db/hash/hash.c index b2b5b6c40e3..2cab5ea10da 100644 --- a/lib/libc/db/hash/hash.c +++ b/lib/libc/db/hash/hash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash.c,v 1.19 2005/03/23 19:34:59 otto Exp $ */ +/* $OpenBSD: hash.c,v 1.20 2005/08/05 13:03:00 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94"; -#else -static const char rcsid[] = "$OpenBSD: hash.c,v 1.19 2005/03/23 19:34:59 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/stat.h> diff --git a/lib/libc/db/hash/hash_bigkey.c b/lib/libc/db/hash/hash_bigkey.c index 2b67c093d19..4443ac9e0ed 100644 --- a/lib/libc/db/hash/hash_bigkey.c +++ b/lib/libc/db/hash/hash_bigkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_bigkey.c,v 1.15 2005/03/23 19:34:59 otto Exp $ */ +/* $OpenBSD: hash_bigkey.c,v 1.16 2005/08/05 13:03:00 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; -#else -static const char rcsid[] = "$OpenBSD: hash_bigkey.c,v 1.15 2005/03/23 19:34:59 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - /* * PACKAGE: hash * DESCRIPTION: diff --git a/lib/libc/db/hash/hash_buf.c b/lib/libc/db/hash/hash_buf.c index 0e2050b25b3..2d31534305e 100644 --- a/lib/libc/db/hash/hash_buf.c +++ b/lib/libc/db/hash/hash_buf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_buf.c,v 1.15 2005/03/23 19:34:59 otto Exp $ */ +/* $OpenBSD: hash_buf.c,v 1.16 2005/08/05 13:03:00 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94"; -#else -static const char rcsid[] = "$OpenBSD: hash_buf.c,v 1.15 2005/03/23 19:34:59 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - /* * PACKAGE: hash * diff --git a/lib/libc/db/hash/hash_func.c b/lib/libc/db/hash/hash_func.c index 870ce3d939b..aa7f2d920bc 100644 --- a/lib/libc/db/hash/hash_func.c +++ b/lib/libc/db/hash/hash_func.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_func.c,v 1.9 2005/03/23 19:34:59 otto Exp $ */ +/* $OpenBSD: hash_func.c,v 1.10 2005/08/05 13:03:00 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_func.c 8.4 (Berkeley) 11/7/95"; -#else -static const char rcsid[] = "$OpenBSD: hash_func.c,v 1.9 2005/03/23 19:34:59 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <db.h> diff --git a/lib/libc/db/hash/hash_log2.c b/lib/libc/db/hash/hash_log2.c index ae3731e141a..533e2cd19a6 100644 --- a/lib/libc/db/hash/hash_log2.c +++ b/lib/libc/db/hash/hash_log2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_log2.c,v 1.7 2003/06/25 21:15:05 deraadt Exp $ */ +/* $OpenBSD: hash_log2.c,v 1.8 2005/08/05 13:03:00 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_log2.c 8.4 (Berkeley) 11/7/95"; -#else -static const char rcsid[] = "$OpenBSD: hash_log2.c,v 1.7 2003/06/25 21:15:05 deraadt Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - #include <db.h> #include "hash.h" #include "page.h" diff --git a/lib/libc/db/hash/hash_page.c b/lib/libc/db/hash/hash_page.c index 8526680c5f7..c32e2820069 100644 --- a/lib/libc/db/hash/hash_page.c +++ b/lib/libc/db/hash/hash_page.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_page.c,v 1.16 2005/03/23 19:34:59 otto Exp $ */ +/* $OpenBSD: hash_page.c,v 1.17 2005/08/05 13:03:00 espie Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -32,14 +32,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_page.c 8.7 (Berkeley) 8/16/94"; -#else -static const char rcsid[] = "$OpenBSD: hash_page.c,v 1.16 2005/03/23 19:34:59 otto Exp $"; -#endif -#endif /* LIBC_SCCS and not lint */ - /* * PACKAGE: hashing * |