From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z9rY6-0003Zd-GE for qemu-devel@nongnu.org; Tue, 30 Jun 2015 05:09:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z9rY1-0006yg-EA for qemu-devel@nongnu.org; Tue, 30 Jun 2015 05:09:50 -0400 From: Gerd Hoffmann Date: Tue, 30 Jun 2015 11:09:34 +0200 Message-Id: <1435655374-20741-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH] move QemuOpts from qemu/option.h to qemu/typedefs.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- include/qemu/option.h | 2 +- include/qemu/typedefs.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/qemu/option.h b/include/qemu/option.h index 57e51c9..28195ba 100644 --- a/include/qemu/option.h +++ b/include/qemu/option.h @@ -28,6 +28,7 @@ #include #include "qemu/queue.h" +#include "qemu/typedefs.h" #include "qapi/error.h" #include "qapi/qmp/qdict.h" @@ -45,7 +46,6 @@ bool has_help_option(const char *param); bool is_valid_option_list(const char *param); typedef struct QemuOpt QemuOpt; -typedef struct QemuOpts QemuOpts; typedef struct QemuOptsList QemuOptsList; enum QemuOptType { diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index 6fdcbcd..690ff69 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -66,6 +66,7 @@ typedef struct QEMUBH QEMUBH; typedef struct QemuConsole QemuConsole; typedef struct QEMUFile QEMUFile; typedef struct QEMUMachine QEMUMachine; +typedef struct QemuOpts QemuOpts; typedef struct QEMUSGList QEMUSGList; typedef struct QEMUSizedBuffer QEMUSizedBuffer; typedef struct QEMUTimerListGroup QEMUTimerListGroup; -- 1.8.3.1