diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-05-24 16:24:39 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2016-06-07 18:19:24 +0300 |
commit | 030c98aff14f7504f1b4e00967a79595918288c6 (patch) | |
tree | 7b49abf992ed0e0b5af93932bffc06196b717149 /slirp | |
parent | 36a2c2d6d3a9793d15bac129b4f07596d55b80f2 (diff) | |
download | qemu-030c98aff14f7504f1b4e00967a79595918288c6.zip |
all: Remove unnecessary glib.h includes
Remove glib.h includes, as it is provided by osdep.h.
This commit was created with scripts/clean-includes.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Tested-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'slirp')
-rw-r--r-- | slirp/dnssearch.c | 1 | ||||
-rw-r--r-- | slirp/slirp.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/slirp/dnssearch.c b/slirp/dnssearch.c index aed2f13af5..4c70a64359 100644 --- a/slirp/dnssearch.c +++ b/slirp/dnssearch.c @@ -23,7 +23,6 @@ */ #include "qemu/osdep.h" -#include <glib.h> #include "slirp.h" static const uint8_t RFC3397_OPT_DOMAIN_SEARCH = 119; diff --git a/slirp/slirp.h b/slirp/slirp.h index 5df755e697..e3641f9eba 100644 --- a/slirp/slirp.h +++ b/slirp/slirp.h @@ -69,7 +69,6 @@ typedef char *caddr_t; #include <sys/stropts.h> #endif -#include <glib.h> #include "debug.h" |