From: Michael S. Tsirkin Date: Mon, 2 Sep 2013 08:41:37 +0000 (+0300) Subject: range: add Range to typedefs X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~524^2~3^2~78^2~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cfe25e2bcada943984e27ee63918fd75dc4563ac;p=sdk%2Femulator%2Fqemu.git range: add Range to typedefs will help simplify header dependencies. Signed-off-by: Michael S. Tsirkin --- diff --git a/include/qemu/range.h b/include/qemu/range.h index b76cc0df09..4a0780d4eb 100644 --- a/include/qemu/range.h +++ b/include/qemu/range.h @@ -2,6 +2,7 @@ #define QEMU_RANGE_H #include +#include /* * Operations on 64 bit address ranges. @@ -15,7 +16,6 @@ struct Range { uint64_t begin; /* First byte of the range, or 0 if empty. */ uint64_t end; /* 1 + the last byte. 0 if range empty or ends at ~0x0LL. */ }; -typedef struct Range Range; /* Get last byte of a range from offset + length. * Undefined for ranges that wrap around 0. */ diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index 3205540059..a4c1b84d69 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -68,5 +68,6 @@ typedef struct QEMUSGList QEMUSGList; typedef struct SHPCDevice SHPCDevice; typedef struct FWCfgState FWCfgState; typedef struct PcGuestInfo PcGuestInfo; +typedef struct Range Range; #endif /* QEMU_TYPEDEFS_H */