From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mkgjm-0007On-SI for qemu-devel@nongnu.org; Mon, 07 Sep 2009 12:06:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mkgjh-0007LF-B3 for qemu-devel@nongnu.org; Mon, 07 Sep 2009 12:06:37 -0400 Received: from [199.232.76.173] (port=34944 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mkgjg-0007L5-Sq for qemu-devel@nongnu.org; Mon, 07 Sep 2009 12:06:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53206) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mkgjg-0003Ty-AZ for qemu-devel@nongnu.org; Mon, 07 Sep 2009 12:06:32 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n87G6VKP010191 for ; Mon, 7 Sep 2009 12:06:31 -0400 From: Gerd Hoffmann Date: Mon, 7 Sep 2009 18:06:04 +0200 Message-Id: <1252339585-27797-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1252339585-27797-1-git-send-email-kraxel@redhat.com> References: <1252339585-27797-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 02/23] qemu-option.h include protectors List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann qemu-option.h has no protection against including it twice. This patch adds the usual "#ifndef header" bits. Signed-off-by: Gerd Hoffmann --- qemu-config.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/qemu-config.h b/qemu-config.h index 08629de..e49d715 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -1,4 +1,9 @@ +#ifndef QEMU_CONFIG_H +#define QEMU_CONFIG_H + extern QemuOptsList qemu_drive_opts; extern QemuOptsList qemu_device_opts; int qemu_set_option(const char *str); + +#endif /* QEMU_CONFIG_H */ -- 1.6.2.5