From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40739) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ttaks-0008Vh-V2 for qemu-devel@nongnu.org; Fri, 11 Jan 2013 04:18:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ttakp-0005eb-2A for qemu-devel@nongnu.org; Fri, 11 Jan 2013 04:18:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35117) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ttako-0005eN-P7 for qemu-devel@nongnu.org; Fri, 11 Jan 2013 04:18:22 -0500 From: Stefan Hajnoczi Date: Fri, 11 Jan 2013 10:18:03 +0100 Message-Id: <1357895886-14283-4-git-send-email-stefanha@redhat.com> In-Reply-To: <1357895886-14283-1-git-send-email-stefanha@redhat.com> References: <1357895886-14283-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH 3/6] qga/channel-posix.c: Explicitly include string.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Anthony Liguori , Stefan Hajnoczi From: Peter Maydell Explicitly include string.h to avoid warnings under MacOS X/clang about implicit declarations of strerror() and strlen(). Signed-off-by: Peter Maydell Reviewed-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- qga/channel-posix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qga/channel-posix.c b/qga/channel-posix.c index d4fd628..ca9e4aa 100644 --- a/qga/channel-posix.c +++ b/qga/channel-posix.c @@ -4,6 +4,7 @@ #include #include #include +#include #include "qemu/osdep.h" #include "qemu/sockets.h" #include "qga/channel.h" -- 1.8.0.2