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 C985B138334 for ; Tue, 19 Nov 2019 20:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EADAE08D3; Tue, 19 Nov 2019 20:28:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 68666E08D3 for ; Tue, 19 Nov 2019 20:28:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A03C934D0E1 for ; Tue, 19 Nov 2019 20:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C44878B7 for ; Tue, 19 Nov 2019 20:28:33 +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: <1574195270.2fd5891051cb756d8299747cc7fbe01bb0382c2c.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qfile.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 2fd5891051cb756d8299747cc7fbe01bb0382c2c X-VCS-Branch: master Date: Tue, 19 Nov 2019 20:28:33 +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: 5477f271-52b7-412f-b0ba-6d25300b4b9c X-Archives-Hash: 9c855d285a308fd567edb58ca5477ba3 commit: 2fd5891051cb756d8299747cc7fbe01bb0382c2c Author: Fabian Groffen gentoo org> AuthorDate: Tue Nov 19 20:27:50 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Nov 19 20:27:50 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=2fd58910 qfile: include sys/stat.h because we use fstat Signed-off-by: Fabian Groffen gentoo.org> qfile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qfile.c b/qfile.c index 8fa6eb4..6c2ebb8 100644 --- a/qfile.c +++ b/qfile.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "atom.h" #include "basename.h"