Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/indent indent: remove foreign RCS IDs
details: https://anonhg.NetBSD.org/src/rev/0aad940d0192
branches: trunk
changeset: 375306:0aad940d0192
user: rillig <rillig%NetBSD.org@localhost>
date: Sun May 14 12:12:02 2023 +0000
description:
indent: remove foreign RCS IDs
diffstat:
usr.bin/indent/args.c | 12 ++----------
usr.bin/indent/indent.c | 12 ++----------
usr.bin/indent/indent.h | 6 +-----
usr.bin/indent/io.c | 12 ++----------
usr.bin/indent/lexi.c | 12 ++----------
usr.bin/indent/parse.c | 12 ++----------
usr.bin/indent/pr_comment.c | 12 ++----------
7 files changed, 13 insertions(+), 65 deletions(-)
diffs (182 lines):
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/args.c
--- a/usr.bin/indent/args.c Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/args.c Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: args.c,v 1.76 2023/05/14 11:29:23 rillig Exp $ */
+/* $NetBSD: args.c,v 1.77 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -37,16 +37,8 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)args.c 8.1 (Berkeley) 6/6/93";
-#endif
-
#include <sys/cdefs.h>
-#if defined(__NetBSD__)
-__RCSID("$NetBSD: args.c,v 1.76 2023/05/14 11:29:23 rillig Exp $");
-#elif defined(__FreeBSD__)
-__FBSDID("$FreeBSD: head/usr.bin/indent/args.c 336318 2018-07-15 21:04:21Z pstef $");
-#endif
+__RCSID("$NetBSD: args.c,v 1.77 2023/05/14 12:12:02 rillig Exp $");
/* Read options from profile files and from the command line. */
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/indent.c
--- a/usr.bin/indent/indent.c Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/indent.c Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: indent.c,v 1.265 2023/05/14 11:29:23 rillig Exp $ */
+/* $NetBSD: indent.c,v 1.266 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -37,16 +37,8 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93";
-#endif
-
#include <sys/cdefs.h>
-#if defined(__NetBSD__)
-__RCSID("$NetBSD: indent.c,v 1.265 2023/05/14 11:29:23 rillig Exp $");
-#elif defined(__FreeBSD__)
-__FBSDID("$FreeBSD: head/usr.bin/indent/indent.c 340138 2018-11-04 19:24:49Z oshogbo $");
-#endif
+__RCSID("$NetBSD: indent.c,v 1.266 2023/05/14 12:12:02 rillig Exp $");
#include <sys/param.h>
#include <err.h>
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/indent.h
--- a/usr.bin/indent/indent.h Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/indent.h Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: indent.h,v 1.129 2023/05/14 11:29:23 rillig Exp $ */
+/* $NetBSD: indent.h,v 1.130 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
@@ -64,10 +64,6 @@
* SUCH DAMAGE.
*/
-#if 0
-__FBSDID("$FreeBSD: head/usr.bin/indent/indent.h 336333 2018-07-16 05:46:50Z pstef $");
-#endif
-
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/io.c
--- a/usr.bin/indent/io.c Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/io.c Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: io.c,v 1.162 2023/05/14 11:29:23 rillig Exp $ */
+/* $NetBSD: io.c,v 1.163 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -37,16 +37,8 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93";
-#endif
-
#include <sys/cdefs.h>
-#if defined(__NetBSD__)
-__RCSID("$NetBSD: io.c,v 1.162 2023/05/14 11:29:23 rillig Exp $");
-#elif defined(__FreeBSD__)
-__FBSDID("$FreeBSD: head/usr.bin/indent/io.c 334927 2018-06-10 16:44:18Z pstef $");
-#endif
+__RCSID("$NetBSD: io.c,v 1.163 2023/05/14 12:12:02 rillig Exp $");
#include <assert.h>
#include <stdio.h>
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/lexi.c
--- a/usr.bin/indent/lexi.c Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/lexi.c Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: lexi.c,v 1.181 2023/05/14 11:29:23 rillig Exp $ */
+/* $NetBSD: lexi.c,v 1.182 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -37,16 +37,8 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93";
-#endif
-
#include <sys/cdefs.h>
-#if defined(__NetBSD__)
-__RCSID("$NetBSD: lexi.c,v 1.181 2023/05/14 11:29:23 rillig Exp $");
-#elif defined(__FreeBSD__)
-__FBSDID("$FreeBSD: head/usr.bin/indent/lexi.c 337862 2018-08-15 18:19:45Z pstef $");
-#endif
+__RCSID("$NetBSD: lexi.c,v 1.182 2023/05/14 12:12:02 rillig Exp $");
#include <stdlib.h>
#include <string.h>
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/parse.c
--- a/usr.bin/indent/parse.c Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/parse.c Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.54 2023/05/13 09:27:49 rillig Exp $ */
+/* $NetBSD: parse.c,v 1.55 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -37,16 +37,8 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/6/93";
-#endif
-
#include <sys/cdefs.h>
-#if defined(__NetBSD__)
-__RCSID("$NetBSD: parse.c,v 1.54 2023/05/13 09:27:49 rillig Exp $");
-#else
-__FBSDID("$FreeBSD: head/usr.bin/indent/parse.c 337651 2018-08-11 19:20:06Z pstef $");
-#endif
+__RCSID("$NetBSD: parse.c,v 1.55 2023/05/14 12:12:02 rillig Exp $");
#include <err.h>
#include <stdio.h>
diff -r 6b2b2fca29de -r 0aad940d0192 usr.bin/indent/pr_comment.c
--- a/usr.bin/indent/pr_comment.c Sun May 14 11:29:23 2023 +0000
+++ b/usr.bin/indent/pr_comment.c Sun May 14 12:12:02 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pr_comment.c,v 1.132 2023/05/13 14:30:48 rillig Exp $ */
+/* $NetBSD: pr_comment.c,v 1.133 2023/05/14 12:12:02 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -37,16 +37,8 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)pr_comment.c 8.1 (Berkeley) 6/6/93";
-#endif
-
#include <sys/cdefs.h>
-#if defined(__NetBSD__)
-__RCSID("$NetBSD: pr_comment.c,v 1.132 2023/05/13 14:30:48 rillig Exp $");
-#elif defined(__FreeBSD__)
-__FBSDID("$FreeBSD: head/usr.bin/indent/pr_comment.c 334927 2018-06-10 16:44:18Z pstef $");
-#endif
+__RCSID("$NetBSD: pr_comment.c,v 1.133 2023/05/14 12:12:02 rillig Exp $");
#include <assert.h>
#include <stdio.h>
Home |
Main Index |
Thread Index |
Old Index