diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 17:49:53 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-02-04 17:01:04 +0000 |
commit | 2231197c87337a9778e0b2000b1ecb7d33c774b3 (patch) | |
tree | f589638202c02cb3b9988f56e7b33e167d618e83 /bsd-user/strace.c | |
parent | 87c9b5e047f3799ec9dba6e31ec0522adf06951c (diff) |
bsd-user: 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: 1454089805-5470-4-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'bsd-user/strace.c')
-rw-r--r-- | bsd-user/strace.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bsd-user/strace.c b/bsd-user/strace.c index e33dd4d48f..fa66fe1ee2 100644 --- a/bsd-user/strace.c +++ b/bsd-user/strace.c @@ -16,14 +16,10 @@ * along with this program; if not, see <http://www.gnu.org/licenses/>. */ -#include <stdio.h> -#include <errno.h> +#include "qemu/osdep.h" #include <sys/select.h> -#include <sys/types.h> -#include <unistd.h> #include <sys/syscall.h> #include <sys/ioccom.h> -#include <ctype.h> #include "qemu.h" |