From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AB5E015800F for ; Sun, 29 Jan 2023 03:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFAC0E08EB; Sun, 29 Jan 2023 03:41:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE567E08EB for ; Sun, 29 Jan 2023 03:41:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B8783340E74 for ; Sun, 29 Jan 2023 03:41:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60983828 for ; Sun, 29 Jan 2023 03:41:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1674963711.ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee.sam@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: dumpelf.c paxelf.c paxinc.c paxinc.h paxldso.c paxldso.h paxmacho.c pspax.c scanelf.c scanmacho.c seccomp-bpf.c xfuncs.c X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee X-VCS-Branch: master Date: Sun, 29 Jan 2023 03:41:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 311c9ec5-f3f7-42ba-bf5e-62adac66402c X-Archives-Hash: fe09d433831eb374ec82f9864f69f478 commit: ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee Author: Sam James gentoo org> AuthorDate: Sun Jan 29 03:41:09 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 29 03:41:51 2023 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=ffedc60f *: IWYU fixes deux Signed-off-by: Sam James gentoo.org> dumpelf.c | 1 + paxelf.c | 1 + paxinc.c | 1 + paxinc.h | 1 + paxldso.c | 2 +- paxldso.h | 2 -- paxmacho.c | 1 + pspax.c | 1 + scanelf.c | 1 + scanmacho.c | 1 + seccomp-bpf.c | 1 + xfuncs.c | 1 + 12 files changed, 11 insertions(+), 3 deletions(-) diff --git a/dumpelf.c b/dumpelf.c index baa6358..877b0db 100644 --- a/dumpelf.c +++ b/dumpelf.c @@ -11,6 +11,7 @@ const char argv0[] = "dumpelf"; #include #include #include +#include #include #include #include diff --git a/paxelf.c b/paxelf.c index 0268fa4..b072ba0 100644 --- a/paxelf.c +++ b/paxelf.c @@ -7,6 +7,7 @@ */ #include +#include #include #include #include diff --git a/paxinc.c b/paxinc.c index 7dfd4ca..f87e8a6 100644 --- a/paxinc.c +++ b/paxinc.c @@ -12,6 +12,7 @@ #include "paxinc.h" #include +#include #include #include #include diff --git a/paxinc.h b/paxinc.h index 7eb6802..52bbefd 100644 --- a/paxinc.h +++ b/paxinc.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include diff --git a/paxldso.c b/paxldso.c index acab364..d40d7ef 100644 --- a/paxldso.c +++ b/paxldso.c @@ -8,9 +8,9 @@ #include #include -#include #include #include +#include #include #include #include diff --git a/paxldso.h b/paxldso.h index 1e95851..fd9f344 100644 --- a/paxldso.h +++ b/paxldso.h @@ -9,8 +9,6 @@ #ifndef _PAX_LDSO_H #define _PAX_LDSO_H -#include - #include "paxelf.h" #include "porting.h" #include "xfuncs.h" diff --git a/paxmacho.c b/paxmacho.c index fcdff4b..39db1cb 100644 --- a/paxmacho.c +++ b/paxmacho.c @@ -9,6 +9,7 @@ #include #include +#include #include #include #include diff --git a/pspax.c b/pspax.c index 1e75494..369ed37 100644 --- a/pspax.c +++ b/pspax.c @@ -21,6 +21,7 @@ const char argv0[] = "pspax"; #include #include #include +#include #include #include #include diff --git a/scanelf.c b/scanelf.c index ee990c9..d6bb14b 100644 --- a/scanelf.c +++ b/scanelf.c @@ -17,6 +17,7 @@ const char argv0[] = "scanelf"; #include #include #include +#include #include #include #include diff --git a/scanmacho.c b/scanmacho.c index fa1eee1..c38c5ed 100644 --- a/scanmacho.c +++ b/scanmacho.c @@ -16,6 +16,7 @@ const char argv0[] = "scanmacho"; #include #include #include +#include #include #include #include diff --git a/seccomp-bpf.c b/seccomp-bpf.c index 1d64172..7c3923f 100644 --- a/seccomp-bpf.c +++ b/seccomp-bpf.c @@ -11,6 +11,7 @@ const char argv0[] = "seccomp-bpf"; #include #include +#include #include #include #include diff --git a/xfuncs.c b/xfuncs.c index e912fb0..a68756b 100644 --- a/xfuncs.c +++ b/xfuncs.c @@ -8,6 +8,7 @@ #include #include +#include #include #include