diff options
author | Ken Smith <kensmith@FreeBSD.org> | 2010-03-21 01:30:13 +0000 |
---|---|---|
committer | Ken Smith <kensmith@FreeBSD.org> | 2010-03-21 01:30:13 +0000 |
commit | 9c4d1c1956ecb0a222fb2f4579c320391fb67f06 (patch) | |
tree | a9ac9b0e0ce25e6b0acc0f247dc4572d56ecc496 /lib/libc/regex | |
parent | 1c808b47a2787a3a6a6ee0ca2fffb39b8e17a29a (diff) |
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 a2e23ebaf903a..6175059637896 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.12.1 2010/02/10 00:26:20 kensmith Exp $ # regex sources .PATH: ${.CURDIR}/regex diff --git a/lib/libc/regex/Symbol.map b/lib/libc/regex/Symbol.map index 5821f62b64309..c8af7bbd36e56 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.12.1 2010/02/10 00:26:20 kensmith Exp $ */ FBSD_1.0 { diff --git a/lib/libc/regex/cname.h b/lib/libc/regex/cname.h index 7087bcb565f36..18e6c5cb00128 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.12.1 2010/02/10 00:26:20 kensmith Exp $ */ /* character-name table */ diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index a44511b8d5610..7d17f3cef6e92 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.12.1 2010/02/10 00:26:20 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 3e4172432f1c9..b5c82133dbfdb 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.32.1 2010/02/10 00:26:20 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 caa2ca39612d3..11e83d4d2cb6d 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.32.1 2010/02/10 00:26:20 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 6b2bf386eed4f..45e723ce153f5 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.3.36.1 2010/02/10 00:26:20 kensmith Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/mkh b/lib/libc/regex/grot/mkh index 1deba7983d5ce..6300d99ac3ac3 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.38.1 2010/02/10 00:26:20 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 70e0ec5fca904..1a6701f21288e 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.38.1 2010/02/10 00:26:20 kensmith Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/tests b/lib/libc/regex/grot/tests index 95a21bb0fdd4b..0510942f47dca 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.12.1 2010/02/10 00:26:20 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 463c6a27969ee..264b3df8a92ef 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.11.18.1.4.1 2010/02/10 00:26:20 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 39ae1d4679e12..47b8cb0667404 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.12.1 2010/02/10 00:26:20 kensmith Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c index b9b773cc602ee..9c222c97b8482 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.12.1 2010/02/10 00:26:20 kensmith Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regex.3 b/lib/libc/regex/regex.3 index ea1ba25a90b41..076b55471ecca 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.12.1 2010/02/10 00:26:20 kensmith Exp $ .\" .Dd August 17, 2005 .Dt REGEX 3 diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h index 7aa717edc1676..121827be20e62 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.12.1 2010/02/10 00:26:20 kensmith Exp $ */ /* diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index 1cf87b810471c..5026c571b241b 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.12.1 2010/02/10 00:26:20 kensmith Exp $"); /* * the outer shell of regexec() diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index c979becdaf4d8..4cee076ce3f30 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.12.1 2010/02/10 00:26:20 kensmith Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/utils.h b/lib/libc/regex/utils.h index 3531aed232ed0..1866eb3005210 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.12.1 2010/02/10 00:26:20 kensmith Exp $ */ /* utility definitions */ |