Module Name:    src
Committed By:   rillig
Date:           Sun May 14 12:12:02 UTC 2023

Modified Files:
        src/usr.bin/indent: args.c indent.c indent.h io.c lexi.c parse.c
            pr_comment.c

Log Message:
indent: remove foreign RCS IDs


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 src/usr.bin/indent/args.c
cvs rdiff -u -r1.265 -r1.266 src/usr.bin/indent/indent.c
cvs rdiff -u -r1.129 -r1.130 src/usr.bin/indent/indent.h
cvs rdiff -u -r1.162 -r1.163 src/usr.bin/indent/io.c
cvs rdiff -u -r1.181 -r1.182 src/usr.bin/indent/lexi.c
cvs rdiff -u -r1.54 -r1.55 src/usr.bin/indent/parse.c
cvs rdiff -u -r1.132 -r1.133 src/usr.bin/indent/pr_comment.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/indent/args.c
diff -u src/usr.bin/indent/args.c:1.76 src/usr.bin/indent/args.c:1.77
--- src/usr.bin/indent/args.c:1.76	Sun May 14 11:29:23 2023
+++ src/usr.bin/indent/args.c	Sun May 14 12:12:02 2023
@@ -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. */
 

Index: src/usr.bin/indent/indent.c
diff -u src/usr.bin/indent/indent.c:1.265 src/usr.bin/indent/indent.c:1.266
--- src/usr.bin/indent/indent.c:1.265	Sun May 14 11:29:23 2023
+++ src/usr.bin/indent/indent.c	Sun May 14 12:12:02 2023
@@ -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>

Index: src/usr.bin/indent/indent.h
diff -u src/usr.bin/indent/indent.h:1.129 src/usr.bin/indent/indent.h:1.130
--- src/usr.bin/indent/indent.h:1.129	Sun May 14 11:29:23 2023
+++ src/usr.bin/indent/indent.h	Sun May 14 12:12:02 2023
@@ -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>

Index: src/usr.bin/indent/io.c
diff -u src/usr.bin/indent/io.c:1.162 src/usr.bin/indent/io.c:1.163
--- src/usr.bin/indent/io.c:1.162	Sun May 14 11:29:23 2023
+++ src/usr.bin/indent/io.c	Sun May 14 12:12:02 2023
@@ -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>

Index: src/usr.bin/indent/lexi.c
diff -u src/usr.bin/indent/lexi.c:1.181 src/usr.bin/indent/lexi.c:1.182
--- src/usr.bin/indent/lexi.c:1.181	Sun May 14 11:29:23 2023
+++ src/usr.bin/indent/lexi.c	Sun May 14 12:12:02 2023
@@ -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>

Index: src/usr.bin/indent/parse.c
diff -u src/usr.bin/indent/parse.c:1.54 src/usr.bin/indent/parse.c:1.55
--- src/usr.bin/indent/parse.c:1.54	Sat May 13 09:27:49 2023
+++ src/usr.bin/indent/parse.c	Sun May 14 12:12:02 2023
@@ -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>

Index: src/usr.bin/indent/pr_comment.c
diff -u src/usr.bin/indent/pr_comment.c:1.132 src/usr.bin/indent/pr_comment.c:1.133
--- src/usr.bin/indent/pr_comment.c:1.132	Sat May 13 14:30:48 2023
+++ src/usr.bin/indent/pr_comment.c	Sun May 14 12:12:02 2023
@@ -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>

Reply via email to