Module Name: src
Committed By: christos
Date: Sun Jan 26 21:47:00 UTC 2014
Modified Files:
src/external/bsd/nvi/dist/regex: regcomp.c regerror.c regexec.c
regfree.c
Log Message:
little manual fixing
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/regex/regcomp.c \
src/external/bsd/nvi/dist/regex/regerror.c \
src/external/bsd/nvi/dist/regex/regexec.c \
src/external/bsd/nvi/dist/regex/regfree.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/nvi/dist/regex/regcomp.c
diff -u src/external/bsd/nvi/dist/regex/regcomp.c:1.4 src/external/bsd/nvi/dist/regex/regcomp.c:1.5
--- src/external/bsd/nvi/dist/regex/regcomp.c:1.4 Sun Jan 26 16:43:45 2014
+++ src/external/bsd/nvi/dist/regex/regcomp.c Sun Jan 26 16:47:00 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: regcomp.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */
+/* $NetBSD: regcomp.c,v 1.5 2014/01/26 21:47:00 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994 Henry Spencer.
* Copyright (c) 1992, 1993, 1994
@@ -38,11 +38,13 @@
* @(#)regcomp.c 8.4 (Berkeley) 3/19/94
*/
+#include <sys/cdefs.h>
+#if 0
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)regcomp.c 8.4 (Berkeley) 3/19/94";
#endif /* LIBC_SCCS and not lint */
#else
-__RCSID("$NetBSD: regcomp.c,v 1.4 2014/01/26 21:43:45 christos Exp $");
+__RCSID("$NetBSD: regcomp.c,v 1.5 2014/01/26 21:47:00 christos Exp $");
#endif
#include <sys/types.h>
Index: src/external/bsd/nvi/dist/regex/regerror.c
diff -u src/external/bsd/nvi/dist/regex/regerror.c:1.4 src/external/bsd/nvi/dist/regex/regerror.c:1.5
--- src/external/bsd/nvi/dist/regex/regerror.c:1.4 Sun Jan 26 16:43:45 2014
+++ src/external/bsd/nvi/dist/regex/regerror.c Sun Jan 26 16:47:00 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: regerror.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */
+/* $NetBSD: regerror.c,v 1.5 2014/01/26 21:47:00 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994 Henry Spencer.
* Copyright (c) 1992, 1993, 1994
@@ -38,11 +38,13 @@
* @(#)regerror.c 8.3 (Berkeley) 3/19/94
*/
+#include <sys/cdefs.h>
+#if 0
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)regerror.c 8.3 (Berkeley) 3/19/94";
#endif /* LIBC_SCCS and not lint */
#else
-__RCSID("$NetBSD: regerror.c,v 1.4 2014/01/26 21:43:45 christos Exp $");
+__RCSID("$NetBSD: regerror.c,v 1.5 2014/01/26 21:47:00 christos Exp $");
#endif
#include <sys/types.h>
Index: src/external/bsd/nvi/dist/regex/regexec.c
diff -u src/external/bsd/nvi/dist/regex/regexec.c:1.4 src/external/bsd/nvi/dist/regex/regexec.c:1.5
--- src/external/bsd/nvi/dist/regex/regexec.c:1.4 Sun Jan 26 16:43:45 2014
+++ src/external/bsd/nvi/dist/regex/regexec.c Sun Jan 26 16:47:00 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: regexec.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */
+/* $NetBSD: regexec.c,v 1.5 2014/01/26 21:47:00 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994 Henry Spencer.
* Copyright (c) 1992, 1993, 1994
@@ -38,11 +38,13 @@
* @(#)regexec.c 8.2 (Berkeley) 3/16/94
*/
+#include <sys/cdefs.h>
+#if 0
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)regexec.c 8.2 (Berkeley) 3/16/94";
#endif /* LIBC_SCCS and not lint */
#else
-__RCSID("$NetBSD: regexec.c,v 1.4 2014/01/26 21:43:45 christos Exp $");
+__RCSID("$NetBSD: regexec.c,v 1.5 2014/01/26 21:47:00 christos Exp $");
#endif
/*
Index: src/external/bsd/nvi/dist/regex/regfree.c
diff -u src/external/bsd/nvi/dist/regex/regfree.c:1.4 src/external/bsd/nvi/dist/regex/regfree.c:1.5
--- src/external/bsd/nvi/dist/regex/regfree.c:1.4 Sun Jan 26 16:43:45 2014
+++ src/external/bsd/nvi/dist/regex/regfree.c Sun Jan 26 16:47:00 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: regfree.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */
+/* $NetBSD: regfree.c,v 1.5 2014/01/26 21:47:00 christos Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994 Henry Spencer.
* Copyright (c) 1992, 1993, 1994
@@ -38,11 +38,13 @@
* @(#)regfree.c 8.2 (Berkeley) 3/16/94
*/
+#include <sys/cdefs.h>
+#if 0
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)regfree.c 8.2 (Berkeley) 3/16/94";
#endif /* LIBC_SCCS and not lint */
#else
-__RCSID("$NetBSD: regfree.c,v 1.4 2014/01/26 21:43:45 christos Exp $");
+__RCSID("$NetBSD: regfree.c,v 1.5 2014/01/26 21:47:00 christos Exp $");
#endif
#include <sys/types.h>