From patchwork Mon Apr 4 14:58:23 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ed Maste X-Patchwork-Id: 605895 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qdwB74Hv3z9s8d for ; Tue, 5 Apr 2016 00:59:27 +1000 (AEST) Received: from localhost ([::1]:59157 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1an5yP-0005yF-Qj for incoming@patchwork.ozlabs.org; Mon, 04 Apr 2016 10:59:25 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1an5xu-00056i-AG for qemu-devel@nongnu.org; Mon, 04 Apr 2016 10:58:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1an5xq-0001C6-II for qemu-devel@nongnu.org; Mon, 04 Apr 2016 10:58:54 -0400 Received: from [72.143.111.78] (port=13289 helo=freebsd.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1an5xq-0000uY-Bs for qemu-devel@nongnu.org; Mon, 04 Apr 2016 10:58:50 -0400 Received: from emaste (uid 1001) (envelope-from emaste@freebsd.org) id 9ff0b by freebsd.org (DragonFly Mail Agent 1); Mon, 04 Apr 2016 10:58:26 -0400 From: Ed Maste To: qemu-devel@nongnu.org Date: Mon, 4 Apr 2016 10:58:23 -0400 Message-Id: <1459781903-64465-1-git-send-email-emaste@freebsd.org> X-Mailer: git-send-email 2.4.6 X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-Received-From: 72.143.111.78 Cc: qemu-trivial@nongnu.org, Ed Maste Subject: [Qemu-devel] [PATCH] bsd-user: add necessary includes to fix warnings X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Ed Maste --- bsd-user/syscall.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bsd-user/syscall.c b/bsd-user/syscall.c index 35f784c..47cf865 100644 --- a/bsd-user/syscall.c +++ b/bsd-user/syscall.c @@ -17,6 +17,8 @@ * along with this program; if not, see . */ #include "qemu/osdep.h" +#include "qemu/cutils.h" +#include "qemu/path.h" #include #include #include