summaryrefslogtreecommitdiff
path: root/lib/libc/regex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/regex')
-rw-r--r--lib/libc/regex/Makefile.inc2
-rw-r--r--lib/libc/regex/cclass.h2
-rw-r--r--lib/libc/regex/cname.h2
-rw-r--r--lib/libc/regex/engine.c2
-rw-r--r--lib/libc/regex/grot/Makefile2
-rw-r--r--lib/libc/regex/grot/debug.c2
-rw-r--r--lib/libc/regex/grot/limits.h2
-rw-r--r--lib/libc/regex/grot/main.c2
-rwxr-xr-xlib/libc/regex/grot/mkh2
-rw-r--r--lib/libc/regex/grot/split.c2
-rw-r--r--lib/libc/regex/grot/stdlib.h2
-rw-r--r--lib/libc/regex/grot/tests2
-rw-r--r--lib/libc/regex/re_format.72
-rw-r--r--lib/libc/regex/regcomp.c2
-rw-r--r--lib/libc/regex/regerror.c2
-rw-r--r--lib/libc/regex/regex.32
-rw-r--r--lib/libc/regex/regex2.h2
-rw-r--r--lib/libc/regex/regexec.c2
-rw-r--r--lib/libc/regex/regfree.c2
-rw-r--r--lib/libc/regex/utils.h2
20 files changed, 20 insertions, 20 deletions
diff --git a/lib/libc/regex/Makefile.inc b/lib/libc/regex/Makefile.inc
index 221400dbaea2..e89b466aa34d 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/cclass.h b/lib/libc/regex/cclass.h
index 32a25fa36017..956a655fa336 100644
--- a/lib/libc/regex/cclass.h
+++ b/lib/libc/regex/cclass.h
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* @(#)cclass.h 8.3 (Berkeley) 3/20/94
- * $FreeBSD$
+ * $FreeBSD: src/lib/libc/regex/cclass.h,v 1.4 2002/03/22 23:41:56 obrien Exp $
*/
diff --git a/lib/libc/regex/cname.h b/lib/libc/regex/cname.h
index b03085e485cc..4f0d583d291e 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 9d69c1e98991..77592de177e5 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.13 2003/02/16 17:29:10 nectar 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 b7eefb956662..6de08aa3344f 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.2 2000/07/10 06:10:47 green 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 02a17e4dc0b7..0414fb2ea486 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.3 2002/03/22 21:52:48 obrien Exp $");
#include <stdio.h>
#include <string.h>
diff --git a/lib/libc/regex/grot/limits.h b/lib/libc/regex/grot/limits.h
index 7f4988c68738..e3d29180542d 100644
--- a/lib/libc/regex/grot/limits.h
+++ b/lib/libc/regex/grot/limits.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$
+/* $FreeBSD: src/lib/libc/regex/grot/limits.h,v 1.2 2002/03/22 23:41:57 obrien Exp $
*/
#define _POSIX2_RE_DUP_MAX 255
diff --git a/lib/libc/regex/grot/main.c b/lib/libc/regex/grot/main.c
index 6b2bf386eed4..b43c0eb4f595 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 1deba7983d5c..72bf2215d05c 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 70e0ec5fca90..fbc8b012b999 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/stdlib.h b/lib/libc/regex/grot/stdlib.h
index ae859ac7fb23..32cffa9e0d5e 100644
--- a/lib/libc/regex/grot/stdlib.h
+++ b/lib/libc/regex/grot/stdlib.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$
+/* $FreeBSD: src/lib/libc/regex/grot/stdlib.h,v 1.2 2002/03/22 23:41:57 obrien Exp $
*/
extern char *malloc();
diff --git a/lib/libc/regex/grot/tests b/lib/libc/regex/grot/tests
index 07e9dfb8539d..7b7922b64078 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 58e05e0bdc91..aa0feccdc805 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.10 2002/01/22 12:38:43 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 e342fdaf3cb2..c479a54f54e1 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.30 2003/02/16 17:29:10 nectar Exp $");
#include <sys/types.h>
#include <stdio.h>
diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c
index 98882024adca..f2a21163d59e 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.8 2002/10/02 07:49:35 mike Exp $");
#include <sys/types.h>
#include <stdio.h>
diff --git a/lib/libc/regex/regex.3 b/lib/libc/regex/regex.3
index 68edd7f99513..a81027a01944 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.13 2003/09/08 19:57:15 ru Exp $
.\"
.Dd October 2, 2002
.Dt REGEX 3
diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h
index 8c645ce4d8cd..303b7f7b353e 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.6 2002/03/22 23:41:56 obrien Exp $
*/
/*
diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c
index c13c72df7fe6..e91938e45f3e 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.5 2003/02/16 17:29:10 nectar Exp $");
/*
* the outer shell of regexec()
diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c
index 96f29976a8c3..82119d31d37f 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.5 2002/03/22 21:52:47 obrien Exp $");
#include <sys/types.h>
#include <stdio.h>
diff --git a/lib/libc/regex/utils.h b/lib/libc/regex/utils.h
index 9d6eba3cf8cb..5439b6cd45e9 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 */