diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-01-15 15:46:22 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-01-15 15:46:22 +0000 |
commit | 5cd221028ba5e7ada35a0dd196fb642b44f197d1 (patch) | |
tree | d019bfe23aa5d3b5b6bb2c54e65e169e3c463b12 /lib/libc/db/hash | |
parent | 665ce17da44f98ae193440703de789dedfb6a72c (diff) |
Diffstat (limited to 'lib/libc/db/hash')
-rw-r--r-- | lib/libc/db/hash/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/extern.h | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash.h | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_bigkey.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_buf.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_func.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_log2.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_page.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/ndbm.c | 2 | ||||
-rw-r--r-- | lib/libc/db/hash/page.h | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/lib/libc/db/hash/Makefile.inc b/lib/libc/db/hash/Makefile.inc index 2ecb81763f248..0ebdde956026f 100644 --- a/lib/libc/db/hash/Makefile.inc +++ b/lib/libc/db/hash/Makefile.inc @@ -1,5 +1,5 @@ # from @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $FreeBSD: src/lib/libc/db/hash/Makefile.inc,v 1.5 2002/11/18 09:50:54 ru Exp $ .PATH: ${.CURDIR}/db/hash diff --git a/lib/libc/db/hash/extern.h b/lib/libc/db/hash/extern.h index 9ae583265fa21..2259ac07e5f6a 100644 --- a/lib/libc/db/hash/extern.h +++ b/lib/libc/db/hash/extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.4 (Berkeley) 6/16/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/db/hash/extern.h,v 1.3 2002/03/22 09:18:22 obrien Exp $ */ BUFHEAD *__add_ovflpage(HTAB *, BUFHEAD *); diff --git a/lib/libc/db/hash/hash.c b/lib/libc/db/hash/hash.c index 4dd12677a5924..e4d40f9709a81 100644 --- a/lib/libc/db/hash/hash.c +++ b/lib/libc/db/hash/hash.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/hash.c,v 1.12 2004/09/10 05:41:41 kuriyama Exp $"); #include "namespace.h" #include <sys/param.h> diff --git a/lib/libc/db/hash/hash.h b/lib/libc/db/hash/hash.h index 2c0a542ed4e49..33fefa7d298e1 100644 --- a/lib/libc/db/hash/hash.h +++ b/lib/libc/db/hash/hash.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)hash.h 8.3 (Berkeley) 5/31/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/db/hash/hash.h,v 1.6 2002/03/21 22:46:26 obrien Exp $ */ /* Operations */ diff --git a/lib/libc/db/hash/hash_bigkey.c b/lib/libc/db/hash/hash_bigkey.c index c70b375f4782c..487df5b36d028 100644 --- a/lib/libc/db/hash/hash_bigkey.c +++ b/lib/libc/db/hash/hash_bigkey.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/hash_bigkey.c,v 1.5 2003/02/16 17:29:09 nectar Exp $"); /* * PACKAGE: hash diff --git a/lib/libc/db/hash/hash_buf.c b/lib/libc/db/hash/hash_buf.c index 1ec6b11e7e695..2a81cb6ceff5a 100644 --- a/lib/libc/db/hash/hash_buf.c +++ b/lib/libc/db/hash/hash_buf.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/hash_buf.c,v 1.7 2002/03/21 22:46:26 obrien Exp $"); /* * PACKAGE: hash diff --git a/lib/libc/db/hash/hash_func.c b/lib/libc/db/hash/hash_func.c index 194c87233c67f..d46d62086c9f8 100644 --- a/lib/libc/db/hash/hash_func.c +++ b/lib/libc/db/hash/hash_func.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hash_func.c 8.2 (Berkeley) 2/21/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/hash_func.c,v 1.5 2003/02/16 17:29:09 nectar Exp $"); #include <sys/types.h> diff --git a/lib/libc/db/hash/hash_log2.c b/lib/libc/db/hash/hash_log2.c index c9634dcfc4fd8..827dbef9e7459 100644 --- a/lib/libc/db/hash/hash_log2.c +++ b/lib/libc/db/hash/hash_log2.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hash_log2.c 8.2 (Berkeley) 5/31/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/hash_log2.c,v 1.2 2002/03/21 18:47:38 obrien Exp $"); #include <sys/types.h> diff --git a/lib/libc/db/hash/hash_page.c b/lib/libc/db/hash/hash_page.c index f0739fb655e90..8c4b0b52efa01 100644 --- a/lib/libc/db/hash/hash_page.c +++ b/lib/libc/db/hash/hash_page.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)hash_page.c 8.7 (Berkeley) 8/16/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/hash_page.c,v 1.8 2002/03/21 22:46:26 obrien Exp $"); /* * PACKAGE: hashing diff --git a/lib/libc/db/hash/ndbm.c b/lib/libc/db/hash/ndbm.c index b1d825da9d465..8561c8c254cc0 100644 --- a/lib/libc/db/hash/ndbm.c +++ b/lib/libc/db/hash/ndbm.c @@ -38,7 +38,7 @@ static char sccsid[] = "@(#)ndbm.c 8.4 (Berkeley) 7/21/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/db/hash/ndbm.c,v 1.6 2002/03/22 21:52:01 obrien Exp $"); /* * This package provides a dbm compatible interface to the new hashing diff --git a/lib/libc/db/hash/page.h b/lib/libc/db/hash/page.h index 6ad92484661d9..2cf7460e0c30f 100644 --- a/lib/libc/db/hash/page.h +++ b/lib/libc/db/hash/page.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)page.h 8.2 (Berkeley) 5/31/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/db/hash/page.h,v 1.2 2002/03/22 23:41:40 obrien Exp $ */ /* |