diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 17:50:01 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-02-04 17:41:30 +0000 |
commit | f2ad72b30e214d1e3e41dba36f855354dfa81832 (patch) | |
tree | d7efb937126f7e2c6ba9cd7b1da48ef2a3853a25 /qobject | |
parent | 2744d9207f397a3cb8d31654cac63e0ca0299d68 (diff) |
qobject: Clean up includes
Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.
This commit was created with scripts/clean-includes.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1454089805-5470-12-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'qobject')
-rw-r--r-- | qobject/json-lexer.c | 2 | ||||
-rw-r--r-- | qobject/json-parser.c | 2 | ||||
-rw-r--r-- | qobject/json-streamer.c | 1 | ||||
-rw-r--r-- | qobject/qbool.c | 1 | ||||
-rw-r--r-- | qobject/qdict.c | 1 | ||||
-rw-r--r-- | qobject/qfloat.c | 1 | ||||
-rw-r--r-- | qobject/qint.c | 1 | ||||
-rw-r--r-- | qobject/qjson.c | 1 | ||||
-rw-r--r-- | qobject/qlist.c | 1 | ||||
-rw-r--r-- | qobject/qnull.c | 1 | ||||
-rw-r--r-- | qobject/qobject.c | 1 | ||||
-rw-r--r-- | qobject/qstring.c | 1 |
12 files changed, 12 insertions, 2 deletions
diff --git a/qobject/json-lexer.c b/qobject/json-lexer.c index 92798ae3a4..496374d9ab 100644 --- a/qobject/json-lexer.c +++ b/qobject/json-lexer.c @@ -11,9 +11,9 @@ * */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "qapi/qmp/json-lexer.h" -#include <stdint.h> #define MAX_TOKEN_SIZE (64ULL << 20) diff --git a/qobject/json-parser.c b/qobject/json-parser.c index 3c5d35d7b0..77c9382c5e 100644 --- a/qobject/json-parser.c +++ b/qobject/json-parser.c @@ -11,7 +11,7 @@ * */ -#include <stdarg.h> +#include "qemu/osdep.h" #include "qemu-common.h" #include "qapi/qmp/qstring.h" diff --git a/qobject/json-streamer.c b/qobject/json-streamer.c index a4db4b832e..02516853a1 100644 --- a/qobject/json-streamer.c +++ b/qobject/json-streamer.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "qapi/qmp/json-lexer.h" #include "qapi/qmp/json-streamer.h" diff --git a/qobject/qbool.c b/qobject/qbool.c index 856c743357..0606bbd2a3 100644 --- a/qobject/qbool.c +++ b/qobject/qbool.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "qapi/qmp/qbool.h" #include "qapi/qmp/qobject.h" #include "qemu-common.h" diff --git a/qobject/qdict.c b/qobject/qdict.c index 19df837c55..9833bd0730 100644 --- a/qobject/qdict.c +++ b/qobject/qdict.c @@ -10,6 +10,7 @@ * See the COPYING.LIB file in the top-level directory. */ +#include "qemu/osdep.h" #include "qapi/qmp/qint.h" #include "qapi/qmp/qfloat.h" #include "qapi/qmp/qdict.h" diff --git a/qobject/qfloat.c b/qobject/qfloat.c index 87d89a7721..d5da847701 100644 --- a/qobject/qfloat.c +++ b/qobject/qfloat.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "qapi/qmp/qfloat.h" #include "qapi/qmp/qobject.h" #include "qemu-common.h" diff --git a/qobject/qint.c b/qobject/qint.c index 7cba9adf40..d7d1b3021f 100644 --- a/qobject/qint.c +++ b/qobject/qint.c @@ -10,6 +10,7 @@ * See the COPYING.LIB file in the top-level directory. */ +#include "qemu/osdep.h" #include "qapi/qmp/qint.h" #include "qapi/qmp/qobject.h" #include "qemu-common.h" diff --git a/qobject/qjson.c b/qobject/qjson.c index a3e6a7ca42..b8cc4ca964 100644 --- a/qobject/qjson.c +++ b/qobject/qjson.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "qapi/qmp/json-lexer.h" #include "qapi/qmp/json-parser.h" #include "qapi/qmp/json-streamer.h" diff --git a/qobject/qlist.c b/qobject/qlist.c index 3c045aed11..1ec74de2b3 100644 --- a/qobject/qlist.c +++ b/qobject/qlist.c @@ -10,6 +10,7 @@ * See the COPYING.LIB file in the top-level directory. */ +#include "qemu/osdep.h" #include "qapi/qmp/qlist.h" #include "qapi/qmp/qobject.h" #include "qemu/queue.h" diff --git a/qobject/qnull.c b/qobject/qnull.c index 5f7ba4d01a..c124d0585e 100644 --- a/qobject/qnull.c +++ b/qobject/qnull.c @@ -10,6 +10,7 @@ * or later. See the COPYING.LIB file in the top-level directory. */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "qapi/qmp/qobject.h" diff --git a/qobject/qobject.c b/qobject/qobject.c index a3ef14eb55..cd41fb940b 100644 --- a/qobject/qobject.c +++ b/qobject/qobject.c @@ -7,6 +7,7 @@ * or later. See the COPYING.LIB file in the top-level directory. */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "qapi/qmp/qbool.h" #include "qapi/qmp/qdict.h" diff --git a/qobject/qstring.c b/qobject/qstring.c index f44c5c424d..5da7b5f37c 100644 --- a/qobject/qstring.c +++ b/qobject/qstring.c @@ -10,6 +10,7 @@ * See the COPYING.LIB file in the top-level directory. */ +#include "qemu/osdep.h" #include "qapi/qmp/qobject.h" #include "qapi/qmp/qstring.h" #include "qemu-common.h" |