indent: remove redundant include lines

This commit is contained in:
rillig 2023-05-15 08:11:27 +00:00
parent 3569a691ac
commit dca2e8fb00
3 changed files with 6 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: indent.c,v 1.270 2023/05/15 08:02:01 rillig Exp $ */
/* $NetBSD: indent.c,v 1.271 2023/05/15 08:11:27 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@ -38,11 +38,10 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: indent.c,v 1.270 2023/05/15 08:02:01 rillig Exp $");
__RCSID("$NetBSD: indent.c,v 1.271 2023/05/15 08:11:27 rillig Exp $");
#include <sys/param.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdarg.h>
#include <stdio.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: io.c,v 1.166 2023/05/15 07:28:45 rillig Exp $ */
/* $NetBSD: io.c,v 1.167 2023/05/15 08:11:27 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@ -38,9 +38,8 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: io.c,v 1.166 2023/05/15 07:28:45 rillig Exp $");
__RCSID("$NetBSD: io.c,v 1.167 2023/05/15 08:11:27 rillig Exp $");
#include <assert.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: parse.c,v 1.56 2023/05/15 07:28:45 rillig Exp $ */
/* $NetBSD: parse.c,v 1.57 2023/05/15 08:11:27 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@ -38,10 +38,9 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: parse.c,v 1.56 2023/05/15 07:28:45 rillig Exp $");
__RCSID("$NetBSD: parse.c,v 1.57 2023/05/15 08:11:27 rillig Exp $");
#include <err.h>
#include <stdio.h>
#include "indent.h"