Module Name: src Committed By: rillig Date: Thu Jul 13 08:40:38 UTC 2023
Modified Files: src/usr.bin/xlint/common: emit.c externs.h inittyp.c lint.h mem.c param.h src/usr.bin/xlint/lint1: cgram.y decl.c emit1.c err.c externs1.h func.c init.c lex.c lint1.h main1.c mem1.c op.h scan.l tree.c src/usr.bin/xlint/lint2: chk.c emit2.c externs2.h hash.c lint2.h main2.c msg.c read.c src/usr.bin/xlint/xlint: pathnames.h xlint.c Log Message: lint: indent copyright lines consistently To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/usr.bin/xlint/common/emit.c \ src/usr.bin/xlint/common/mem.c cvs rdiff -u -r1.28 -r1.29 src/usr.bin/xlint/common/externs.h cvs rdiff -u -r1.39 -r1.40 src/usr.bin/xlint/common/inittyp.c cvs rdiff -u -r1.41 -r1.42 src/usr.bin/xlint/common/lint.h cvs rdiff -u -r1.12 -r1.13 src/usr.bin/xlint/common/param.h cvs rdiff -u -r1.459 -r1.460 src/usr.bin/xlint/lint1/cgram.y cvs rdiff -u -r1.350 -r1.351 src/usr.bin/xlint/lint1/decl.c cvs rdiff -u -r1.71 -r1.72 src/usr.bin/xlint/lint1/emit1.c cvs rdiff -u -r1.211 -r1.212 src/usr.bin/xlint/lint1/err.c cvs rdiff -u -r1.193 -r1.194 src/usr.bin/xlint/lint1/externs1.h cvs rdiff -u -r1.169 -r1.170 src/usr.bin/xlint/lint1/func.c cvs rdiff -u -r1.245 -r1.246 src/usr.bin/xlint/lint1/init.c cvs rdiff -u -r1.181 -r1.182 src/usr.bin/xlint/lint1/lex.c cvs rdiff -u -r1.188 -r1.189 src/usr.bin/xlint/lint1/lint1.h cvs rdiff -u -r1.73 -r1.74 src/usr.bin/xlint/lint1/main1.c cvs rdiff -u -r1.67 -r1.68 src/usr.bin/xlint/lint1/mem1.c cvs rdiff -u -r1.20 -r1.21 src/usr.bin/xlint/lint1/op.h cvs rdiff -u -r1.138 -r1.139 src/usr.bin/xlint/lint1/scan.l cvs rdiff -u -r1.562 -r1.563 src/usr.bin/xlint/lint1/tree.c cvs rdiff -u -r1.59 -r1.60 src/usr.bin/xlint/lint2/chk.c cvs rdiff -u -r1.32 -r1.33 src/usr.bin/xlint/lint2/emit2.c cvs rdiff -u -r1.20 -r1.21 src/usr.bin/xlint/lint2/externs2.h cvs rdiff -u -r1.27 -r1.28 src/usr.bin/xlint/lint2/hash.c cvs rdiff -u -r1.23 -r1.24 src/usr.bin/xlint/lint2/lint2.h \ src/usr.bin/xlint/lint2/msg.c cvs rdiff -u -r1.33 -r1.34 src/usr.bin/xlint/lint2/main2.c cvs rdiff -u -r1.86 -r1.87 src/usr.bin/xlint/lint2/read.c cvs rdiff -u -r1.7 -r1.8 src/usr.bin/xlint/xlint/pathnames.h cvs rdiff -u -r1.113 -r1.114 src/usr.bin/xlint/xlint/xlint.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/xlint/common/emit.c diff -u src/usr.bin/xlint/common/emit.c:1.21 src/usr.bin/xlint/common/emit.c:1.22 --- src/usr.bin/xlint/common/emit.c:1.21 Mon Jul 10 13:55:55 2023 +++ src/usr.bin/xlint/common/emit.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: emit.c,v 1.21 2023/07/10 13:55:55 rillig Exp $ */ +/* $NetBSD: emit.c,v 1.22 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: emit.c,v 1.21 2023/07/10 13:55:55 rillig Exp $"); +__RCSID("$NetBSD: emit.c,v 1.22 2023/07/13 08:40:38 rillig Exp $"); #endif #include <stdio.h> Index: src/usr.bin/xlint/common/mem.c diff -u src/usr.bin/xlint/common/mem.c:1.21 src/usr.bin/xlint/common/mem.c:1.22 --- src/usr.bin/xlint/common/mem.c:1.21 Fri Jan 13 19:41:50 2023 +++ src/usr.bin/xlint/common/mem.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: mem.c,v 1.21 2023/01/13 19:41:50 rillig Exp $ */ +/* $NetBSD: mem.c,v 1.22 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: mem.c,v 1.21 2023/01/13 19:41:50 rillig Exp $"); +__RCSID("$NetBSD: mem.c,v 1.22 2023/07/13 08:40:38 rillig Exp $"); #endif #include <stdarg.h> Index: src/usr.bin/xlint/common/externs.h diff -u src/usr.bin/xlint/common/externs.h:1.28 src/usr.bin/xlint/common/externs.h:1.29 --- src/usr.bin/xlint/common/externs.h:1.28 Thu Jul 6 07:59:00 2023 +++ src/usr.bin/xlint/common/externs.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: externs.h,v 1.28 2023/07/06 07:59:00 rillig Exp $ */ +/* $NetBSD: externs.h,v 1.29 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/common/inittyp.c diff -u src/usr.bin/xlint/common/inittyp.c:1.39 src/usr.bin/xlint/common/inittyp.c:1.40 --- src/usr.bin/xlint/common/inittyp.c:1.39 Sat Jul 8 16:13:00 2023 +++ src/usr.bin/xlint/common/inittyp.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: inittyp.c,v 1.39 2023/07/08 16:13:00 rillig Exp $ */ +/* $NetBSD: inittyp.c,v 1.40 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: inittyp.c,v 1.39 2023/07/08 16:13:00 rillig Exp $"); +__RCSID("$NetBSD: inittyp.c,v 1.40 2023/07/13 08:40:38 rillig Exp $"); #endif #if defined(IS_LINT1) Index: src/usr.bin/xlint/common/lint.h diff -u src/usr.bin/xlint/common/lint.h:1.41 src/usr.bin/xlint/common/lint.h:1.42 --- src/usr.bin/xlint/common/lint.h:1.41 Sat Jul 8 16:13:00 2023 +++ src/usr.bin/xlint/common/lint.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: lint.h,v 1.41 2023/07/08 16:13:00 rillig Exp $ */ +/* $NetBSD: lint.h,v 1.42 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/common/param.h diff -u src/usr.bin/xlint/common/param.h:1.12 src/usr.bin/xlint/common/param.h:1.13 --- src/usr.bin/xlint/common/param.h:1.12 Mon Jul 10 09:51:30 2023 +++ src/usr.bin/xlint/common/param.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.12 2023/07/10 09:51:30 rillig Exp $ */ +/* $NetBSD: param.h,v 1.13 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/lint1/cgram.y diff -u src/usr.bin/xlint/lint1/cgram.y:1.459 src/usr.bin/xlint/lint1/cgram.y:1.460 --- src/usr.bin/xlint/lint1/cgram.y:1.459 Thu Jul 13 07:19:24 2023 +++ src/usr.bin/xlint/lint1/cgram.y Thu Jul 13 08:40:38 2023 @@ -1,5 +1,5 @@ %{ -/* $NetBSD: cgram.y,v 1.459 2023/07/13 07:19:24 rillig Exp $ */ +/* $NetBSD: cgram.y,v 1.460 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -16,7 +16,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -35,7 +35,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: cgram.y,v 1.459 2023/07/13 07:19:24 rillig Exp $"); +__RCSID("$NetBSD: cgram.y,v 1.460 2023/07/13 08:40:38 rillig Exp $"); #endif #include <limits.h> Index: src/usr.bin/xlint/lint1/decl.c diff -u src/usr.bin/xlint/lint1/decl.c:1.350 src/usr.bin/xlint/lint1/decl.c:1.351 --- src/usr.bin/xlint/lint1/decl.c:1.350 Thu Jul 13 06:41:27 2023 +++ src/usr.bin/xlint/lint1/decl.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: decl.c,v 1.350 2023/07/13 06:41:27 rillig Exp $ */ +/* $NetBSD: decl.c,v 1.351 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: decl.c,v 1.350 2023/07/13 06:41:27 rillig Exp $"); +__RCSID("$NetBSD: decl.c,v 1.351 2023/07/13 08:40:38 rillig Exp $"); #endif #include <sys/param.h> Index: src/usr.bin/xlint/lint1/emit1.c diff -u src/usr.bin/xlint/lint1/emit1.c:1.71 src/usr.bin/xlint/lint1/emit1.c:1.72 --- src/usr.bin/xlint/lint1/emit1.c:1.71 Sun Jul 2 18:14:44 2023 +++ src/usr.bin/xlint/lint1/emit1.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: emit1.c,v 1.71 2023/07/02 18:14:44 rillig Exp $ */ +/* $NetBSD: emit1.c,v 1.72 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: emit1.c,v 1.71 2023/07/02 18:14:44 rillig Exp $"); +__RCSID("$NetBSD: emit1.c,v 1.72 2023/07/13 08:40:38 rillig Exp $"); #endif #include "lint1.h" Index: src/usr.bin/xlint/lint1/err.c diff -u src/usr.bin/xlint/lint1/err.c:1.211 src/usr.bin/xlint/lint1/err.c:1.212 --- src/usr.bin/xlint/lint1/err.c:1.211 Tue Jul 11 20:54:23 2023 +++ src/usr.bin/xlint/lint1/err.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: err.c,v 1.211 2023/07/11 20:54:23 rillig Exp $ */ +/* $NetBSD: err.c,v 1.212 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: err.c,v 1.211 2023/07/11 20:54:23 rillig Exp $"); +__RCSID("$NetBSD: err.c,v 1.212 2023/07/13 08:40:38 rillig Exp $"); #endif #include <limits.h> Index: src/usr.bin/xlint/lint1/externs1.h diff -u src/usr.bin/xlint/lint1/externs1.h:1.193 src/usr.bin/xlint/lint1/externs1.h:1.194 --- src/usr.bin/xlint/lint1/externs1.h:1.193 Thu Jul 13 07:19:24 2023 +++ src/usr.bin/xlint/lint1/externs1.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: externs1.h,v 1.193 2023/07/13 07:19:24 rillig Exp $ */ +/* $NetBSD: externs1.h,v 1.194 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/lint1/func.c diff -u src/usr.bin/xlint/lint1/func.c:1.169 src/usr.bin/xlint/lint1/func.c:1.170 --- src/usr.bin/xlint/lint1/func.c:1.169 Thu Jul 13 07:19:24 2023 +++ src/usr.bin/xlint/lint1/func.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: func.c,v 1.169 2023/07/13 07:19:24 rillig Exp $ */ +/* $NetBSD: func.c,v 1.170 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: func.c,v 1.169 2023/07/13 07:19:24 rillig Exp $"); +__RCSID("$NetBSD: func.c,v 1.170 2023/07/13 08:40:38 rillig Exp $"); #endif #include <stdlib.h> Index: src/usr.bin/xlint/lint1/init.c diff -u src/usr.bin/xlint/lint1/init.c:1.245 src/usr.bin/xlint/lint1/init.c:1.246 --- src/usr.bin/xlint/lint1/init.c:1.245 Mon Jul 10 09:51:30 2023 +++ src/usr.bin/xlint/lint1/init.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: init.c,v 1.245 2023/07/10 09:51:30 rillig Exp $ */ +/* $NetBSD: init.c,v 1.246 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: init.c,v 1.245 2023/07/10 09:51:30 rillig Exp $"); +__RCSID("$NetBSD: init.c,v 1.246 2023/07/13 08:40:38 rillig Exp $"); #endif #include <stdlib.h> Index: src/usr.bin/xlint/lint1/lex.c diff -u src/usr.bin/xlint/lint1/lex.c:1.181 src/usr.bin/xlint/lint1/lex.c:1.182 --- src/usr.bin/xlint/lint1/lex.c:1.181 Thu Jul 13 08:18:17 2023 +++ src/usr.bin/xlint/lint1/lex.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: lex.c,v 1.181 2023/07/13 08:18:17 rillig Exp $ */ +/* $NetBSD: lex.c,v 1.182 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,8 +15,8 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for - * The NetBSD Project. + * This product includes software developed by Jochen Pohl for + * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: lex.c,v 1.181 2023/07/13 08:18:17 rillig Exp $"); +__RCSID("$NetBSD: lex.c,v 1.182 2023/07/13 08:40:38 rillig Exp $"); #endif #include <ctype.h> Index: src/usr.bin/xlint/lint1/lint1.h diff -u src/usr.bin/xlint/lint1/lint1.h:1.188 src/usr.bin/xlint/lint1/lint1.h:1.189 --- src/usr.bin/xlint/lint1/lint1.h:1.188 Thu Jul 13 07:19:24 2023 +++ src/usr.bin/xlint/lint1/lint1.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: lint1.h,v 1.188 2023/07/13 07:19:24 rillig Exp $ */ +/* $NetBSD: lint1.h,v 1.189 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/lint1/main1.c diff -u src/usr.bin/xlint/lint1/main1.c:1.73 src/usr.bin/xlint/lint1/main1.c:1.74 --- src/usr.bin/xlint/lint1/main1.c:1.73 Sat Jul 8 09:08:20 2023 +++ src/usr.bin/xlint/lint1/main1.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: main1.c,v 1.73 2023/07/08 09:08:20 rillig Exp $ */ +/* $NetBSD: main1.c,v 1.74 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: main1.c,v 1.73 2023/07/08 09:08:20 rillig Exp $"); +__RCSID("$NetBSD: main1.c,v 1.74 2023/07/13 08:40:38 rillig Exp $"); #endif #include <sys/types.h> Index: src/usr.bin/xlint/lint1/mem1.c diff -u src/usr.bin/xlint/lint1/mem1.c:1.67 src/usr.bin/xlint/lint1/mem1.c:1.68 --- src/usr.bin/xlint/lint1/mem1.c:1.67 Sun Jul 9 12:15:07 2023 +++ src/usr.bin/xlint/lint1/mem1.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: mem1.c,v 1.67 2023/07/09 12:15:07 rillig Exp $ */ +/* $NetBSD: mem1.c,v 1.68 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: mem1.c,v 1.67 2023/07/09 12:15:07 rillig Exp $"); +__RCSID("$NetBSD: mem1.c,v 1.68 2023/07/13 08:40:38 rillig Exp $"); #endif #include <sys/param.h> Index: src/usr.bin/xlint/lint1/op.h diff -u src/usr.bin/xlint/lint1/op.h:1.20 src/usr.bin/xlint/lint1/op.h:1.21 --- src/usr.bin/xlint/lint1/op.h:1.20 Wed Jun 15 18:29:21 2022 +++ src/usr.bin/xlint/lint1/op.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: op.h,v 1.20 2022/06/15 18:29:21 rillig Exp $ */ +/* $NetBSD: op.h,v 1.21 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/lint1/scan.l diff -u src/usr.bin/xlint/lint1/scan.l:1.138 src/usr.bin/xlint/lint1/scan.l:1.139 --- src/usr.bin/xlint/lint1/scan.l:1.138 Mon Jan 9 00:07:30 2023 +++ src/usr.bin/xlint/lint1/scan.l Thu Jul 13 08:40:38 2023 @@ -1,5 +1,5 @@ %{ -/* $NetBSD: scan.l,v 1.138 2023/01/09 00:07:30 rillig Exp $ */ +/* $NetBSD: scan.l,v 1.139 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -16,8 +16,8 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for - * The NetBSD Project. + * This product includes software developed by Jochen Pohl for + * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * @@ -35,7 +35,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: scan.l,v 1.138 2023/01/09 00:07:30 rillig Exp $"); +__RCSID("$NetBSD: scan.l,v 1.139 2023/07/13 08:40:38 rillig Exp $"); #endif #include "lint1.h" Index: src/usr.bin/xlint/lint1/tree.c diff -u src/usr.bin/xlint/lint1/tree.c:1.562 src/usr.bin/xlint/lint1/tree.c:1.563 --- src/usr.bin/xlint/lint1/tree.c:1.562 Thu Jul 13 06:41:27 2023 +++ src/usr.bin/xlint/lint1/tree.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: tree.c,v 1.562 2023/07/13 06:41:27 rillig Exp $ */ +/* $NetBSD: tree.c,v 1.563 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: tree.c,v 1.562 2023/07/13 06:41:27 rillig Exp $"); +__RCSID("$NetBSD: tree.c,v 1.563 2023/07/13 08:40:38 rillig Exp $"); #endif #include <float.h> Index: src/usr.bin/xlint/lint2/chk.c diff -u src/usr.bin/xlint/lint2/chk.c:1.59 src/usr.bin/xlint/lint2/chk.c:1.60 --- src/usr.bin/xlint/lint2/chk.c:1.59 Mon Jul 10 14:13:19 2023 +++ src/usr.bin/xlint/lint2/chk.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: chk.c,v 1.59 2023/07/10 14:13:19 rillig Exp $ */ +/* $NetBSD: chk.c,v 1.60 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: chk.c,v 1.59 2023/07/10 14:13:19 rillig Exp $"); +__RCSID("$NetBSD: chk.c,v 1.60 2023/07/13 08:40:38 rillig Exp $"); #endif #include <ctype.h> Index: src/usr.bin/xlint/lint2/emit2.c diff -u src/usr.bin/xlint/lint2/emit2.c:1.32 src/usr.bin/xlint/lint2/emit2.c:1.33 --- src/usr.bin/xlint/lint2/emit2.c:1.32 Thu Jun 29 10:31:33 2023 +++ src/usr.bin/xlint/lint2/emit2.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: emit2.c,v 1.32 2023/06/29 10:31:33 rillig Exp $ */ +/* $NetBSD: emit2.c,v 1.33 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -34,7 +34,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: emit2.c,v 1.32 2023/06/29 10:31:33 rillig Exp $"); +__RCSID("$NetBSD: emit2.c,v 1.33 2023/07/13 08:40:38 rillig Exp $"); #endif #include "lint2.h" Index: src/usr.bin/xlint/lint2/externs2.h diff -u src/usr.bin/xlint/lint2/externs2.h:1.20 src/usr.bin/xlint/lint2/externs2.h:1.21 --- src/usr.bin/xlint/lint2/externs2.h:1.20 Mon Jul 10 12:40:22 2023 +++ src/usr.bin/xlint/lint2/externs2.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: externs2.h,v 1.20 2023/07/10 12:40:22 rillig Exp $ */ +/* $NetBSD: externs2.h,v 1.21 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/lint2/hash.c diff -u src/usr.bin/xlint/lint2/hash.c:1.27 src/usr.bin/xlint/lint2/hash.c:1.28 --- src/usr.bin/xlint/lint2/hash.c:1.27 Mon Jul 10 12:40:22 2023 +++ src/usr.bin/xlint/lint2/hash.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: hash.c,v 1.27 2023/07/10 12:40:22 rillig Exp $ */ +/* $NetBSD: hash.c,v 1.28 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: hash.c,v 1.27 2023/07/10 12:40:22 rillig Exp $"); +__RCSID("$NetBSD: hash.c,v 1.28 2023/07/13 08:40:38 rillig Exp $"); #endif #include <limits.h> Index: src/usr.bin/xlint/lint2/lint2.h diff -u src/usr.bin/xlint/lint2/lint2.h:1.23 src/usr.bin/xlint/lint2/lint2.h:1.24 --- src/usr.bin/xlint/lint2/lint2.h:1.23 Mon Jul 10 12:40:22 2023 +++ src/usr.bin/xlint/lint2/lint2.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: lint2.h,v 1.23 2023/07/10 12:40:22 rillig Exp $ */ +/* $NetBSD: lint2.h,v 1.24 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/lint2/msg.c diff -u src/usr.bin/xlint/lint2/msg.c:1.23 src/usr.bin/xlint/lint2/msg.c:1.24 --- src/usr.bin/xlint/lint2/msg.c:1.23 Mon Jul 10 14:13:19 2023 +++ src/usr.bin/xlint/lint2/msg.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: msg.c,v 1.23 2023/07/10 14:13:19 rillig Exp $ */ +/* $NetBSD: msg.c,v 1.24 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: msg.c,v 1.23 2023/07/10 14:13:19 rillig Exp $"); +__RCSID("$NetBSD: msg.c,v 1.24 2023/07/13 08:40:38 rillig Exp $"); #endif #include <stdarg.h> Index: src/usr.bin/xlint/lint2/main2.c diff -u src/usr.bin/xlint/lint2/main2.c:1.33 src/usr.bin/xlint/lint2/main2.c:1.34 --- src/usr.bin/xlint/lint2/main2.c:1.33 Mon Jul 10 13:55:55 2023 +++ src/usr.bin/xlint/lint2/main2.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: main2.c,v 1.33 2023/07/10 13:55:55 rillig Exp $ */ +/* $NetBSD: main2.c,v 1.34 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: main2.c,v 1.33 2023/07/10 13:55:55 rillig Exp $"); +__RCSID("$NetBSD: main2.c,v 1.34 2023/07/13 08:40:38 rillig Exp $"); #endif #include <stdio.h> Index: src/usr.bin/xlint/lint2/read.c diff -u src/usr.bin/xlint/lint2/read.c:1.86 src/usr.bin/xlint/lint2/read.c:1.87 --- src/usr.bin/xlint/lint2/read.c:1.86 Mon Jul 10 14:13:19 2023 +++ src/usr.bin/xlint/lint2/read.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: read.c,v 1.86 2023/07/10 14:13:19 rillig Exp $ */ +/* $NetBSD: read.c,v 1.87 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: read.c,v 1.86 2023/07/10 14:13:19 rillig Exp $"); +__RCSID("$NetBSD: read.c,v 1.87 2023/07/13 08:40:38 rillig Exp $"); #endif #include <ctype.h> Index: src/usr.bin/xlint/xlint/pathnames.h diff -u src/usr.bin/xlint/xlint/pathnames.h:1.7 src/usr.bin/xlint/xlint/pathnames.h:1.8 --- src/usr.bin/xlint/xlint/pathnames.h:1.7 Mon Aug 9 20:52:24 2021 +++ src/usr.bin/xlint/xlint/pathnames.h Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: pathnames.h,v 1.7 2021/08/09 20:52:24 rillig Exp $ */ +/* $NetBSD: pathnames.h,v 1.8 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -14,7 +14,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. Index: src/usr.bin/xlint/xlint/xlint.c diff -u src/usr.bin/xlint/xlint/xlint.c:1.113 src/usr.bin/xlint/xlint/xlint.c:1.114 --- src/usr.bin/xlint/xlint/xlint.c:1.113 Mon Jul 3 11:16:32 2023 +++ src/usr.bin/xlint/xlint/xlint.c Thu Jul 13 08:40:38 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: xlint.c,v 1.113 2023/07/03 11:16:32 rillig Exp $ */ +/* $NetBSD: xlint.c,v 1.114 2023/07/13 08:40:38 rillig Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -15,7 +15,7 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: - * This product includes software developed by Jochen Pohl for + * This product includes software developed by Jochen Pohl for * The NetBSD Project. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. @@ -38,7 +38,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) -__RCSID("$NetBSD: xlint.c,v 1.113 2023/07/03 11:16:32 rillig Exp $"); +__RCSID("$NetBSD: xlint.c,v 1.114 2023/07/13 08:40:38 rillig Exp $"); #endif #include <sys/param.h>