diff options
author | Ken Smith <kensmith@FreeBSD.org> | 2009-11-21 06:13:29 +0000 |
---|---|---|
committer | Ken Smith <kensmith@FreeBSD.org> | 2009-11-21 06:13:29 +0000 |
commit | a4d3b78df842614c46b116fc5a6f470be637dccd (patch) | |
tree | 46c6b11aa0464ba59f49361bd26e1a86962c0624 /lib/libc/regex | |
parent | 59dd044d1cb744d3dba6b41c41e196b54e8fd9f8 (diff) |
Create release/8.0.0 for the 8.0-RELEASE.release/8.0.0_cvs
Approved by: re (implicit)
This commit was manufactured to restore the state of the 8.0-RELEASE image.
Diffstat (limited to 'lib/libc/regex')
-rw-r--r-- | lib/libc/regex/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/regex/Symbol.map | 2 | ||||
-rw-r--r-- | lib/libc/regex/cname.h | 2 | ||||
-rw-r--r-- | lib/libc/regex/engine.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/grot/Makefile | 2 | ||||
-rw-r--r-- | lib/libc/regex/grot/debug.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/grot/main.c | 2 | ||||
-rwxr-xr-x | lib/libc/regex/grot/mkh | 2 | ||||
-rw-r--r-- | lib/libc/regex/grot/split.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/grot/tests | 2 | ||||
-rw-r--r-- | lib/libc/regex/re_format.7 | 2 | ||||
-rw-r--r-- | lib/libc/regex/regcomp.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/regerror.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/regex.3 | 2 | ||||
-rw-r--r-- | lib/libc/regex/regex2.h | 2 | ||||
-rw-r--r-- | lib/libc/regex/regexec.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/regfree.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/utils.h | 2 |
18 files changed, 18 insertions, 18 deletions
diff --git a/lib/libc/regex/Makefile.inc b/lib/libc/regex/Makefile.inc index a2e23ebaf903..ec75e73de658 100644 --- a/lib/libc/regex/Makefile.inc +++ b/lib/libc/regex/Makefile.inc @@ -1,5 +1,5 @@ # from @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $FreeBSD: src/lib/libc/regex/Makefile.inc,v 1.8.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ # regex sources .PATH: ${.CURDIR}/regex diff --git a/lib/libc/regex/Symbol.map b/lib/libc/regex/Symbol.map index 5821f62b6430..be311abeb80b 100644 --- a/lib/libc/regex/Symbol.map +++ b/lib/libc/regex/Symbol.map @@ -1,5 +1,5 @@ /* - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/Symbol.map,v 1.2.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ */ FBSD_1.0 { diff --git a/lib/libc/regex/cname.h b/lib/libc/regex/cname.h index 7087bcb565f3..3ffd916e857c 100644 --- a/lib/libc/regex/cname.h +++ b/lib/libc/regex/cname.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)cname.h 8.3 (Berkeley) 3/20/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/cname.h,v 1.4.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ */ /* character-name table */ diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index a44511b8d561..8afd962d2ccf 100644 --- a/lib/libc/regex/engine.c +++ b/lib/libc/regex/engine.c @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/engine.c,v 1.21.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); /* * The matching engine and friends. This file is #included by regexec.c diff --git a/lib/libc/regex/grot/Makefile b/lib/libc/regex/grot/Makefile index 3e4172432f1c..63d1b74b4e4e 100644 --- a/lib/libc/regex/grot/Makefile +++ b/lib/libc/regex/grot/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/lib/libc/regex/grot/Makefile,v 1.4.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $ # You probably want to take -DREDEBUG out of CFLAGS, and put something like # -O in, *after* testing (-DREDEBUG strengthens testing by enabling a lot of # internal assertion checking). Take -Dconst= out for an ANSI compiler. diff --git a/lib/libc/regex/grot/debug.c b/lib/libc/regex/grot/debug.c index caa2ca39612d..b3c58fe05d33 100644 --- a/lib/libc/regex/grot/debug.c +++ b/lib/libc/regex/grot/debug.c @@ -1,5 +1,5 @@ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/grot/debug.c,v 1.4.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/main.c b/lib/libc/regex/grot/main.c index 9563de4d8b8a..715559e6f866 100644 --- a/lib/libc/regex/grot/main.c +++ b/lib/libc/regex/grot/main.c @@ -1,5 +1,5 @@ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/grot/main.c,v 1.4.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/mkh b/lib/libc/regex/grot/mkh index 1deba7983d5c..066eeb38a116 100755 --- a/lib/libc/regex/grot/mkh +++ b/lib/libc/regex/grot/mkh @@ -1,6 +1,6 @@ #! /bin/sh # mkh - pull headers out of C source -# $FreeBSD$ +# $FreeBSD: src/lib/libc/regex/grot/mkh,v 1.3.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $ PATH=/bin:/usr/bin ; export PATH # egrep pattern to pick out marked lines diff --git a/lib/libc/regex/grot/split.c b/lib/libc/regex/grot/split.c index 70e0ec5fca90..3a54fa1b66af 100644 --- a/lib/libc/regex/grot/split.c +++ b/lib/libc/regex/grot/split.c @@ -1,5 +1,5 @@ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/grot/split.c,v 1.3.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/tests b/lib/libc/regex/grot/tests index 95a21bb0fdd4..47393119bedf 100644 --- a/lib/libc/regex/grot/tests +++ b/lib/libc/regex/grot/tests @@ -1,5 +1,5 @@ # regular expression test set -# $FreeBSD$ +# $FreeBSD: src/lib/libc/regex/grot/tests,v 1.3.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ # Lines are at least three fields, separated by one or more tabs. "" stands # for an empty field. First field is an RE. Second field is flags. If # C flag given, regcomp() is expected to fail, and the third field is the diff --git a/lib/libc/regex/re_format.7 b/lib/libc/regex/re_format.7 index 463c6a27969e..7fc0921b3937 100644 --- a/lib/libc/regex/re_format.7 +++ b/lib/libc/regex/re_format.7 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)re_format.7 8.3 (Berkeley) 3/20/94 -.\" $FreeBSD$ +.\" $FreeBSD: src/lib/libc/regex/re_format.7,v 1.12.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $ .\" .Dd March 20, 1994 .Dt RE_FORMAT 7 diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c index 39ae1d4679e1..1c474e0a4aa3 100644 --- a/lib/libc/regex/regcomp.c +++ b/lib/libc/regex/regcomp.c @@ -37,7 +37,7 @@ static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/regcomp.c,v 1.36.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c index b9b773cc602e..c3b3aea96e11 100644 --- a/lib/libc/regex/regerror.c +++ b/lib/libc/regex/regerror.c @@ -37,7 +37,7 @@ static char sccsid[] = "@(#)regerror.c 8.4 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/regerror.c,v 1.11.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regex.3 b/lib/libc/regex/regex.3 index ea1ba25a90b4..f0185deed9c3 100644 --- a/lib/libc/regex/regex.3 +++ b/lib/libc/regex/regex.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)regex.3 8.4 (Berkeley) 3/20/94 -.\" $FreeBSD$ +.\" $FreeBSD: src/lib/libc/regex/regex.3,v 1.21.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ .\" .Dd August 17, 2005 .Dt REGEX 3 diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h index 7aa717edc167..302c43b44347 100644 --- a/lib/libc/regex/regex2.h +++ b/lib/libc/regex/regex2.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)regex2.h 8.4 (Berkeley) 3/20/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/regex2.h,v 1.11.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ */ /* diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index 1cf87b810471..19107af379da 100644 --- a/lib/libc/regex/regexec.c +++ b/lib/libc/regex/regexec.c @@ -37,7 +37,7 @@ static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/regexec.c,v 1.8.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); /* * the outer shell of regexec() diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index c979becdaf4d..8c933ce7880d 100644 --- a/lib/libc/regex/regfree.c +++ b/lib/libc/regex/regfree.c @@ -37,7 +37,7 @@ static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/regfree.c,v 1.8.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/utils.h b/lib/libc/regex/utils.h index 3531aed232ed..43fa457cfa94 100644 --- a/lib/libc/regex/utils.h +++ b/lib/libc/regex/utils.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)utils.h 8.3 (Berkeley) 3/20/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/utils.h,v 1.3.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $ */ /* utility definitions */ |