diff options
author | Peter Maydell | 2016-01-26 19:17:06 +0100 |
---|---|---|
committer | Peter Maydell | 2016-01-29 16:07:23 +0100 |
commit | 21cbfe5f37aaa3a13d3af28454e762c05be67429 (patch) | |
tree | d852e9ad387355a65b500681d8ba6400b426006e /hw/display/xenfb.c | |
parent | arm: Clean up includes (diff) | |
download | qemu-21cbfe5f37aaa3a13d3af28454e762c05be67429.tar.gz qemu-21cbfe5f37aaa3a13d3af28454e762c05be67429.tar.xz qemu-21cbfe5f37aaa3a13d3af28454e762c05be67429.zip |
xen: 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-14-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/display/xenfb.c')
-rw-r--r-- | hw/display/xenfb.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/hw/display/xenfb.c b/hw/display/xenfb.c index 1676660e4e..a533c3d0f4 100644 --- a/hw/display/xenfb.c +++ b/hw/display/xenfb.c @@ -24,16 +24,8 @@ * with this program; if not, see <http://www.gnu.org/licenses/>. */ -#include <stdarg.h> -#include <stdlib.h> -#include <sys/types.h> -#include <fcntl.h> -#include <unistd.h> +#include "qemu/osdep.h" #include <sys/mman.h> -#include <errno.h> -#include <stdio.h> -#include <string.h> -#include <time.h> #include "hw/hw.h" #include "ui/console.h" |