diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:10 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 15:07:23 +0000 |
commit | fbc0412709270b9ada6acf35cbc3a2c76aab75c6 (patch) | |
tree | 628097d90bd8e5f60939e9150f6a0b20fc3eeb33 /fsdev/9p-marshal.c | |
parent | 532392622c1d493e3bec543b10f74f361ea40662 (diff) |
9pfs: 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>
Message-id: 1453832250-766-18-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'fsdev/9p-marshal.c')
-rw-r--r-- | fsdev/9p-marshal.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fsdev/9p-marshal.c b/fsdev/9p-marshal.c index 991e35d242..183d3667c6 100644 --- a/fsdev/9p-marshal.c +++ b/fsdev/9p-marshal.c @@ -11,18 +11,13 @@ * */ +#include "qemu/osdep.h" #include <glib.h> #include <glib/gprintf.h> -#include <sys/types.h> #include <dirent.h> -#include <sys/time.h> #include <utime.h> #include <sys/uio.h> -#include <string.h> -#include <stdint.h> -#include <errno.h> -#include "qemu/compiler.h" #include "9p-marshal.h" void v9fs_string_free(V9fsString *str) |