diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
commit | d7615c200c61c89d6c4f97de1e3abf99bb759de9 (patch) | |
tree | 35d8d19aca072dba63d7062d615a555693a9142a /lib/libc/db/hash | |
parent | 796010265f845625013cfa4bb2f73a26d43f30d2 (diff) |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/db/hash')
-rw-r--r-- | lib/libc/db/hash/Makefile.inc | 3 | ||||
-rw-r--r-- | lib/libc/db/hash/README | 3 | ||||
-rw-r--r-- | lib/libc/db/hash/extern.h | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/hash.h | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_bigkey.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_buf.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_func.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_log2.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_page.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/hsearch.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/ndbm.c | 8 | ||||
-rw-r--r-- | lib/libc/db/hash/page.h | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/search.h | 4 |
14 files changed, 14 insertions, 72 deletions
diff --git a/lib/libc/db/hash/Makefile.inc b/lib/libc/db/hash/Makefile.inc index 79fddf587d9..a25fd9d0c9b 100644 --- a/lib/libc/db/hash/Makefile.inc +++ b/lib/libc/db/hash/Makefile.inc @@ -1,5 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.6 1996/05/03 21:43:43 cgd Exp $ -# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 +# $OpenBSD: Makefile.inc,v 1.3 1996/08/19 08:20:27 tholo Exp $ .PATH: ${.CURDIR}/db/hash diff --git a/lib/libc/db/hash/README b/lib/libc/db/hash/README index 444bcb90414..8e4fa1d0069 100644 --- a/lib/libc/db/hash/README +++ b/lib/libc/db/hash/README @@ -1,5 +1,4 @@ -# $NetBSD: README,v 1.4 1996/05/03 21:43:44 cgd Exp $ -# @(#)README 8.1 (Berkeley) 6/4/93 +# $OpenBSD: README,v 1.3 1996/08/19 08:20:28 tholo Exp $ This package implements a superset of the hsearch and dbm/ndbm libraries. diff --git a/lib/libc/db/hash/extern.h b/lib/libc/db/hash/extern.h index 6b87ce4496d..baa5749eeb7 100644 --- a/lib/libc/db/hash/extern.h +++ b/lib/libc/db/hash/extern.h @@ -1,5 +1,3 @@ -/* $NetBSD: extern.h,v 1.5 1996/05/03 21:43:45 cgd Exp $ */ - /*- * Copyright (c) 1991, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -32,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)extern.h 8.4 (Berkeley) 6/16/94 + * $OpenBSD: extern.h,v 1.3 1996/08/19 08:20:29 tholo Exp $ */ BUFHEAD *__add_ovflpage __P((HTAB *, BUFHEAD *)); diff --git a/lib/libc/db/hash/hash.c b/lib/libc/db/hash/hash.c index 7ee731e500b..66ccc848e86 100644 --- a/lib/libc/db/hash/hash.c +++ b/lib/libc/db/hash/hash.c @@ -1,5 +1,3 @@ -/* $NetBSD: hash.c,v 1.9 1996/05/03 21:43:47 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94"; -#else -static char rcsid[] = "$NetBSD: hash.c,v 1.9 1996/05/03 21:43:47 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hash.c,v 1.3 1996/08/19 08:20:31 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> diff --git a/lib/libc/db/hash/hash.h b/lib/libc/db/hash/hash.h index 8ed5c6f6130..00b437c1e43 100644 --- a/lib/libc/db/hash/hash.h +++ b/lib/libc/db/hash/hash.h @@ -1,5 +1,3 @@ -/* $NetBSD: hash.h,v 1.6 1996/05/03 21:43:48 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -35,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)hash.h 8.3 (Berkeley) 5/31/94 + * $OpenBSD: hash.h,v 1.3 1996/08/19 08:20:32 tholo Exp $ */ /* Operations */ diff --git a/lib/libc/db/hash/hash_bigkey.c b/lib/libc/db/hash/hash_bigkey.c index 0db652b8645..515dcceb719 100644 --- a/lib/libc/db/hash/hash_bigkey.c +++ b/lib/libc/db/hash/hash_bigkey.c @@ -1,5 +1,3 @@ -/* $NetBSD: hash_bigkey.c,v 1.6 1996/05/03 21:43:49 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; -#else -static char rcsid[] = "$NetBSD: hash_bigkey.c,v 1.6 1996/05/03 21:43:49 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hash_bigkey.c,v 1.3 1996/08/19 08:20:34 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/db/hash/hash_buf.c b/lib/libc/db/hash/hash_buf.c index 81aca2a1dc3..e955102501a 100644 --- a/lib/libc/db/hash/hash_buf.c +++ b/lib/libc/db/hash/hash_buf.c @@ -1,5 +1,3 @@ -/* $NetBSD: hash_buf.c,v 1.6 1996/05/03 21:43:51 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94"; -#else -static char rcsid[] = "$NetBSD: hash_buf.c,v 1.6 1996/05/03 21:43:51 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hash_buf.c,v 1.3 1996/08/19 08:20:35 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/db/hash/hash_func.c b/lib/libc/db/hash/hash_func.c index 09cf72e77f6..085f758b12a 100644 --- a/lib/libc/db/hash/hash_func.c +++ b/lib/libc/db/hash/hash_func.c @@ -1,5 +1,3 @@ -/* $NetBSD: hash_func.c,v 1.6 1996/05/03 21:43:52 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_func.c 8.2 (Berkeley) 2/21/94"; -#else -static char rcsid[] = "$NetBSD: hash_func.c,v 1.6 1996/05/03 21:43:52 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hash_func.c,v 1.3 1996/08/19 08:20:37 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/lib/libc/db/hash/hash_log2.c b/lib/libc/db/hash/hash_log2.c index 6ac2ab1ec2d..0a9817df653 100644 --- a/lib/libc/db/hash/hash_log2.c +++ b/lib/libc/db/hash/hash_log2.c @@ -1,5 +1,3 @@ -/* $NetBSD: hash_log2.c,v 1.6 1996/05/03 21:43:54 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_log2.c 8.2 (Berkeley) 5/31/94"; -#else -static char rcsid[] = "$NetBSD: hash_log2.c,v 1.6 1996/05/03 21:43:54 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hash_log2.c,v 1.3 1996/08/19 08:20:38 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/lib/libc/db/hash/hash_page.c b/lib/libc/db/hash/hash_page.c index c81d46ba60f..879d788247f 100644 --- a/lib/libc/db/hash/hash_page.c +++ b/lib/libc/db/hash/hash_page.c @@ -1,5 +1,3 @@ -/* $NetBSD: hash_page.c,v 1.8 1996/05/03 21:43:55 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hash_page.c 8.7 (Berkeley) 8/16/94"; -#else -static char rcsid[] = "$NetBSD: hash_page.c,v 1.8 1996/05/03 21:43:55 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hash_page.c,v 1.3 1996/08/19 08:20:39 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/db/hash/hsearch.c b/lib/libc/db/hash/hsearch.c index 409182c0c64..65fbf9c56e0 100644 --- a/lib/libc/db/hash/hsearch.c +++ b/lib/libc/db/hash/hsearch.c @@ -1,5 +1,3 @@ -/* $NetBSD: hsearch.c,v 1.10 1996/05/03 22:16:32 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)hsearch.c 8.4 (Berkeley) 7/21/94"; -#else -static char rcsid[] = "$NetBSD: hsearch.c,v 1.10 1996/05/03 22:16:32 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: hsearch.c,v 1.3 1996/08/19 08:20:41 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/lib/libc/db/hash/ndbm.c b/lib/libc/db/hash/ndbm.c index dd519a4a8ce..4ac67b56df9 100644 --- a/lib/libc/db/hash/ndbm.c +++ b/lib/libc/db/hash/ndbm.c @@ -1,5 +1,3 @@ -/* $NetBSD: ndbm.c,v 1.9 1996/05/04 00:38:58 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -37,11 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)ndbm.c 8.4 (Berkeley) 7/21/94"; -#else -static char rcsid[] = "$NetBSD: ndbm.c,v 1.9 1996/05/04 00:38:58 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: ndbm.c,v 1.3 1996/08/19 08:20:42 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/db/hash/page.h b/lib/libc/db/hash/page.h index 0ea00b7aea6..90704cbba66 100644 --- a/lib/libc/db/hash/page.h +++ b/lib/libc/db/hash/page.h @@ -1,5 +1,3 @@ -/* $NetBSD: page.h,v 1.6 1996/05/03 21:43:59 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993, 1994 * The Regents of the University of California. All rights reserved. @@ -35,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)page.h 8.2 (Berkeley) 5/31/94 + * $OpenBSD: page.h,v 1.3 1996/08/19 08:20:43 tholo Exp $ */ /* diff --git a/lib/libc/db/hash/search.h b/lib/libc/db/hash/search.h index b9f73132d8d..a57c982973b 100644 --- a/lib/libc/db/hash/search.h +++ b/lib/libc/db/hash/search.h @@ -1,5 +1,3 @@ -/* $NetBSD: search.h,v 1.6 1996/05/03 21:44:01 cgd Exp $ */ - /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)search.h 8.1 (Berkeley) 6/4/93 + * $OpenBSD: search.h,v 1.3 1996/08/19 08:20:44 tholo Exp $ */ /* Backward compatibility to hsearch interface. */ |