diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
commit | d7615c200c61c89d6c4f97de1e3abf99bb759de9 (patch) | |
tree | 35d8d19aca072dba63d7062d615a555693a9142a /lib/libc/regex | |
parent | 796010265f845625013cfa4bb2f73a26d43f30d2 (diff) |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/regex')
-rw-r--r-- | lib/libc/regex/COPYRIGHT | 2 | ||||
-rw-r--r-- | lib/libc/regex/Makefile.inc | 3 | ||||
-rw-r--r-- | lib/libc/regex/WHATSNEW | 3 | ||||
-rw-r--r-- | lib/libc/regex/cclass.h | 4 | ||||
-rw-r--r-- | lib/libc/regex/cname.h | 4 | ||||
-rw-r--r-- | lib/libc/regex/engine.c | 8 | ||||
-rw-r--r-- | lib/libc/regex/re_format.7 | 4 | ||||
-rw-r--r-- | lib/libc/regex/regcomp.c | 10 | ||||
-rw-r--r-- | lib/libc/regex/regerror.c | 10 | ||||
-rw-r--r-- | lib/libc/regex/regex.3 | 4 | ||||
-rw-r--r-- | lib/libc/regex/regex2.h | 4 | ||||
-rw-r--r-- | lib/libc/regex/regexec.c | 10 | ||||
-rw-r--r-- | lib/libc/regex/regfree.c | 10 | ||||
-rw-r--r-- | lib/libc/regex/utils.h | 4 |
14 files changed, 17 insertions, 63 deletions
diff --git a/lib/libc/regex/COPYRIGHT b/lib/libc/regex/COPYRIGHT index dcb48066322..f8984264704 100644 --- a/lib/libc/regex/COPYRIGHT +++ b/lib/libc/regex/COPYRIGHT @@ -1,4 +1,4 @@ -$NetBSD: COPYRIGHT,v 1.4 1995/02/27 13:28:12 cgd Exp $ +$OpenBSD: COPYRIGHT,v 1.2 1996/08/19 08:31:00 tholo Exp $ Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved. This software is not subject to any license of the American Telephone diff --git a/lib/libc/regex/Makefile.inc b/lib/libc/regex/Makefile.inc index 4167db7f042..74adaf8264a 100644 --- a/lib/libc/regex/Makefile.inc +++ b/lib/libc/regex/Makefile.inc @@ -1,5 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.5 1995/02/27 13:28:19 cgd Exp $ -# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 +# $OpenBSD: Makefile.inc,v 1.2 1996/08/19 08:31:01 tholo Exp $ # regex sources .PATH: ${.CURDIR}/regex diff --git a/lib/libc/regex/WHATSNEW b/lib/libc/regex/WHATSNEW index 93eb936060b..a6641e9799c 100644 --- a/lib/libc/regex/WHATSNEW +++ b/lib/libc/regex/WHATSNEW @@ -1,5 +1,4 @@ -# $NetBSD: WHATSNEW,v 1.6 1995/02/27 13:28:25 cgd Exp $ -# @(#)WHATSNEW 8.3 (Berkeley) 3/18/94 +# $OpenBSD: WHATSNEW,v 1.2 1996/08/19 08:31:03 tholo Exp $ New in alpha3.4: The complex bug alluded to below has been fixed (in a slightly kludgey temporary way that may hurt efficiency a bit; this is diff --git a/lib/libc/regex/cclass.h b/lib/libc/regex/cclass.h index 52cd47b8f0d..d10974c4169 100644 --- a/lib/libc/regex/cclass.h +++ b/lib/libc/regex/cclass.h @@ -1,4 +1,4 @@ -/* $NetBSD: cclass.h,v 1.3 1995/02/27 13:28:29 cgd Exp $ */ +/* $OpenBSD: cclass.h,v 1.2 1996/08/19 08:31:04 tholo Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. @@ -35,8 +35,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)cclass.h 8.3 (Berkeley) 3/20/94 */ /* character-class table */ diff --git a/lib/libc/regex/cname.h b/lib/libc/regex/cname.h index 50479db089e..fb357f1e46d 100644 --- a/lib/libc/regex/cname.h +++ b/lib/libc/regex/cname.h @@ -1,4 +1,4 @@ -/* $NetBSD: cname.h,v 1.3 1995/02/27 13:28:33 cgd Exp $ */ +/* $OpenBSD: cname.h,v 1.2 1996/08/19 08:31:05 tholo Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. @@ -35,8 +35,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)cname.h 8.3 (Berkeley) 3/20/94 */ /* character-name table */ diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index 93f6842ac1a..b9791be3687 100644 --- a/lib/libc/regex/engine.c +++ b/lib/libc/regex/engine.c @@ -1,5 +1,3 @@ -/* $NetBSD: engine.c,v 1.5 1995/02/27 13:28:39 cgd Exp $ */ - /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. * Copyright (c) 1992, 1993, 1994 @@ -35,10 +33,12 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)engine.c 8.5 (Berkeley) 3/20/94 */ +#if defined(SNAMES) && defined(LIBC_SCCS) && !defined(lint) +static char enginercsid[] = "$OpenBSD: engine.c,v 1.2 1996/08/19 08:31:06 tholo Exp $"; +#endif /* SNAMES and LIBC_SCCS and not lint */ + /* * The matching engine and friends. This file is #included by regexec.c * after suitable #defines of a variety of macros used herein, so that diff --git a/lib/libc/regex/re_format.7 b/lib/libc/regex/re_format.7 index a2ae26ccf54..065a426b28a 100644 --- a/lib/libc/regex/re_format.7 +++ b/lib/libc/regex/re_format.7 @@ -1,4 +1,4 @@ -.\" $NetBSD: re_format.7,v 1.5 1995/02/27 13:28:52 cgd Exp $ +.\" $OpenBSD: re_format.7,v 1.2 1996/08/19 08:31:08 tholo Exp $ .\" .\" Copyright (c) 1992, 1993, 1994 Henry Spencer. .\" Copyright (c) 1992, 1993, 1994 @@ -35,8 +35,6 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" @(#)re_format.7 8.3 (Berkeley) 3/20/94 -.\" .TH RE_FORMAT 7 "March 20, 1994" .SH NAME re_format \- POSIX 1003.2 regular expressions diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c index 9b64aa4b232..ec5713b71f7 100644 --- a/lib/libc/regex/regcomp.c +++ b/lib/libc/regex/regcomp.c @@ -1,5 +1,3 @@ -/* $NetBSD: regcomp.c,v 1.6 1995/02/27 13:29:01 cgd Exp $ */ - /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. * Copyright (c) 1992, 1993, 1994 @@ -35,16 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)regcomp.c 8.5 (Berkeley) 3/20/94 */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94"; -#else -static char rcsid[] = "$NetBSD: regcomp.c,v 1.6 1995/02/27 13:29:01 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: regcomp.c,v 1.2 1996/08/19 08:31:10 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c index 54c1333d980..f34622c1823 100644 --- a/lib/libc/regex/regerror.c +++ b/lib/libc/regex/regerror.c @@ -1,5 +1,3 @@ -/* $NetBSD: regerror.c,v 1.4 1995/02/27 13:29:20 cgd Exp $ */ - /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. * Copyright (c) 1992, 1993, 1994 @@ -35,16 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)regerror.c 8.4 (Berkeley) 3/20/94 */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)regerror.c 8.4 (Berkeley) 3/20/94"; -#else -static char rcsid[] = "$NetBSD: regerror.c,v 1.4 1995/02/27 13:29:20 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: regerror.c,v 1.2 1996/08/19 08:31:11 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/lib/libc/regex/regex.3 b/lib/libc/regex/regex.3 index f2c738bdc76..883c07c5e15 100644 --- a/lib/libc/regex/regex.3 +++ b/lib/libc/regex/regex.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: regex.3,v 1.4 1995/02/27 13:29:31 cgd Exp $ +.\" $OpenBSD: regex.3,v 1.2 1996/08/19 08:31:13 tholo Exp $ .\" .\" Copyright (c) 1992, 1993, 1994 Henry Spencer. .\" Copyright (c) 1992, 1993, 1994 @@ -35,8 +35,6 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" @(#)regex.3 8.4 (Berkeley) 3/20/94 -.\" .TH REGEX 3 "March 20, 1994" .de ZR .\" one other place knows this name: the SEE ALSO section diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h index 901a6393bfd..986c98aff65 100644 --- a/lib/libc/regex/regex2.h +++ b/lib/libc/regex/regex2.h @@ -1,4 +1,4 @@ -/* $NetBSD: regex2.h,v 1.5 1995/02/27 13:29:40 cgd Exp $ */ +/* $OpenBSD: regex2.h,v 1.2 1996/08/19 08:31:14 tholo Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. @@ -35,8 +35,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)regex2.h 8.4 (Berkeley) 3/20/94 */ /* diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index 493340854ee..ea90a618170 100644 --- a/lib/libc/regex/regexec.c +++ b/lib/libc/regex/regexec.c @@ -1,5 +1,3 @@ -/* $NetBSD: regexec.c,v 1.6 1995/02/27 13:29:48 cgd Exp $ */ - /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. * Copyright (c) 1992, 1993, 1994 @@ -35,16 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)regexec.c 8.3 (Berkeley) 3/20/94 */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94"; -#else -static char rcsid[] = "$NetBSD: regexec.c,v 1.6 1995/02/27 13:29:48 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: regexec.c,v 1.3 1996/08/19 08:31:15 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index e01e306272b..57471d675c5 100644 --- a/lib/libc/regex/regfree.c +++ b/lib/libc/regex/regfree.c @@ -1,5 +1,3 @@ -/* $NetBSD: regfree.c,v 1.4 1995/02/27 13:29:56 cgd Exp $ */ - /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. * Copyright (c) 1992, 1993, 1994 @@ -35,16 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)regfree.c 8.3 (Berkeley) 3/20/94 */ #if defined(LIBC_SCCS) && !defined(lint) -#if 0 -static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94"; -#else -static char rcsid[] = "$NetBSD: regfree.c,v 1.4 1995/02/27 13:29:56 cgd Exp $"; -#endif +static char rcsid[] = "$OpenBSD: regfree.c,v 1.2 1996/08/19 08:31:16 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/lib/libc/regex/utils.h b/lib/libc/regex/utils.h index 2f372ce291b..165b166b441 100644 --- a/lib/libc/regex/utils.h +++ b/lib/libc/regex/utils.h @@ -1,4 +1,4 @@ -/* $NetBSD: utils.h,v 1.5 1995/02/27 13:29:59 cgd Exp $ */ +/* $OpenBSD: utils.h,v 1.2 1996/08/19 08:31:17 tholo Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. @@ -35,8 +35,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)utils.h 8.3 (Berkeley) 3/20/94 */ /* utility definitions */ |