diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2007-01-11 22:54:46 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2007-01-11 22:54:46 +0000 |
commit | 201f78d6b90635d961fa373ecd706e3786333b7e (patch) | |
tree | c8937d0d96aa193878973d98a3a5240f9232ad5a /lib/libc/regex | |
parent | 99e934d3327f7c05890356105bbe793570b22829 (diff) |
Diffstat (limited to 'lib/libc/regex')
-rw-r--r-- | lib/libc/regex/Makefile.inc | 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 |
17 files changed, 17 insertions, 17 deletions
diff --git a/lib/libc/regex/Makefile.inc b/lib/libc/regex/Makefile.inc index 221400dbaea2d..e89b466aa34d3 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.7 2002/11/18 09:50:56 ru Exp $ # regex sources .PATH: ${.CURDIR}/regex diff --git a/lib/libc/regex/cname.h b/lib/libc/regex/cname.h index b03085e485cc5..4f0d583d291e5 100644 --- a/lib/libc/regex/cname.h +++ b/lib/libc/regex/cname.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)cname.h 8.3 (Berkeley) 3/20/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/cname.h,v 1.3 2002/03/22 23:41:56 obrien Exp $ */ /* character-name table */ diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index 35bcb5a83801c..cb48cfc546185 100644 --- a/lib/libc/regex/engine.c +++ b/lib/libc/regex/engine.c @@ -38,7 +38,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/regex/engine.c,v 1.16 2004/12/30 14:27:57 dds 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..be00e5d00ed14 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 2004/07/19 08:48:17 tjr 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..74bca46573311 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 2004/07/19 08:28:53 tjr 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..b43c0eb4f595d 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 2002/03/22 21:52:48 obrien Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/mkh b/lib/libc/regex/grot/mkh index 1deba7983d5ce..72bf2215d05c3 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 2002/03/22 19:45:43 obrien 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..fbc8b012b9994 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 2002/03/22 21:52:48 obrien Exp $"); #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/grot/tests b/lib/libc/regex/grot/tests index 07e9dfb8539d3..7b7922b640781 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.2 2000/07/09 18:14:39 dcs 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 d4555a02d0a68..4527043f2a7d6 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 2004/07/02 23:52:12 ru Exp $ .\" .Dd March 20, 1994 .Dt RE_FORMAT 7 diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c index e03c6c23b3580..268a579a1d8bd 100644 --- a/lib/libc/regex/regcomp.c +++ b/lib/libc/regex/regcomp.c @@ -41,7 +41,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.34 2004/10/03 15:42:59 stefanf Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c index 7942ef706940f..4e43f3dd5045b 100644 --- a/lib/libc/regex/regerror.c +++ b/lib/libc/regex/regerror.c @@ -41,7 +41,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.9 2004/07/12 06:07:26 tjr Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regex.3 b/lib/libc/regex/regex.3 index 9d101e95c2f12..6555c2ece3380 100644 --- a/lib/libc/regex/regex.3 +++ b/lib/libc/regex/regex.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)regex.3 8.4 (Berkeley) 3/20/94 -.\" $FreeBSD$ +.\" $FreeBSD: src/lib/libc/regex/regex.3,v 1.19 2005/02/13 22:25:12 ru Exp $ .\" .Dd July 12, 2004 .Dt REGEX 3 diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h index 6beea48e3050a..c971c9c3b968e 100644 --- a/lib/libc/regex/regex2.h +++ b/lib/libc/regex/regex2.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)regex2.h 8.4 (Berkeley) 3/20/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/regex2.h,v 1.8 2004/07/12 07:35:59 tjr Exp $ */ /* diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index c596bdd1628cd..c570369623e95 100644 --- a/lib/libc/regex/regexec.c +++ b/lib/libc/regex/regexec.c @@ -41,7 +41,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.6 2004/07/12 07:35:59 tjr Exp $"); /* * the outer shell of regexec() diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index b1e6a359a1d7f..110879e637abe 100644 --- a/lib/libc/regex/regfree.c +++ b/lib/libc/regex/regfree.c @@ -41,7 +41,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.6 2004/07/12 07:35:59 tjr Exp $"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/utils.h b/lib/libc/regex/utils.h index 9d6eba3cf8cb9..5439b6cd45e99 100644 --- a/lib/libc/regex/utils.h +++ b/lib/libc/regex/utils.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)utils.h 8.3 (Berkeley) 3/20/94 - * $FreeBSD$ + * $FreeBSD: src/lib/libc/regex/utils.h,v 1.2 2002/03/22 23:41:56 obrien Exp $ */ /* utility definitions */ |