From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46951) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrWUj-00014w-Va for qemu-devel@nongnu.org; Wed, 18 Jul 2012 11:48:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SrWUi-0004ah-R3 for qemu-devel@nongnu.org; Wed, 18 Jul 2012 11:48:57 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:35764) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrWUi-0004aX-Km for qemu-devel@nongnu.org; Wed, 18 Jul 2012 11:48:56 -0400 Message-ID: <5006DAE7.2040909@weilnetz.de> Date: Wed, 18 Jul 2012 17:48:55 +0200 From: Stefan Weil MIME-Version: 1.0 References: <1342620628-12751-1-git-send-email-peter.maydell@linaro.org> <1342620628-12751-10-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1342620628-12751-10-git-send-email-peter.maydell@linaro.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 09/11] configure: Fix compile warning in utimensat/futimens test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel@nongnu.org, patches@linaro.org Am 18.07.2012 16:10, schrieb Peter Maydell: > Fix compile warning in the utimensat/futimens test ("implicit > declaration of function 'utimensat'", ditto futimens) by > adding a missing include. > > Signed-off-by: Peter Maydell > --- > configure | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index 9c2a84d..638e486 100755 > --- a/configure > +++ b/configure > @@ -2341,6 +2341,7 @@ cat > $TMPC << EOF > #define _ATFILE_SOURCE > #include > #include > +#include > > int main(void) > { Reviewed-by: Stefan Weil