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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C59C138335 for ; Mon, 18 Mar 2019 13:14:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 792F9E09B0; Mon, 18 Mar 2019 13:14:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51F3AE09B0 for ; Mon, 18 Mar 2019 13:14:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5FE5335D41 for ; Mon, 18 Mar 2019 13:14:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7312356E for ; Mon, 18 Mar 2019 13:14:07 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1552658497.4d2a9d4b6e7fe431c2f257323bc902b347a943c1.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: main.c porting.h X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 4d2a9d4b6e7fe431c2f257323bc902b347a943c1 X-VCS-Branch: master Date: Mon, 18 Mar 2019 13:14:07 +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: 7cc604cd-33f6-4730-a6de-ac8fb73bc326 X-Archives-Hash: d32d69ab8a0be3921b74f06f0ad8db13 commit: 4d2a9d4b6e7fe431c2f257323bc902b347a943c1 Author: Fabian Groffen gentoo org> AuthorDate: Fri Mar 15 14:01:37 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Mar 15 14:01:37 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=4d2a9d4b porting.h: move iniparser include to its only consumer Signed-off-by: Fabian Groffen gentoo.org> main.c | 4 +++- porting.h | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 4bc9130..5a47b0c 100644 --- a/main.c +++ b/main.c @@ -1,5 +1,5 @@ /* - * Copyright 2005-2018 Gentoo Foundation + * Copyright 2005-2019 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 * * Copyright 2005-2008 Ned Ludd - @@ -9,6 +9,8 @@ #include "porting.h" #include "main.h" +#include + /* prototypes and such */ static bool eat_file(const char *, char **, size_t *); static bool eat_file_fd(int, char **, size_t *); diff --git a/porting.h b/porting.h index 97a45c7..41baa7a 100644 --- a/porting.h +++ b/porting.h @@ -50,8 +50,6 @@ #include #include -#include - #if defined(__MACH__) #include #endif