diff options
author | Peter Maydell | 2016-02-23 12:58:02 +0100 |
---|---|---|
committer | Peter Maydell | 2016-02-23 13:43:04 +0100 |
commit | 1ef26b1f3025413fffca05a5634580745ef84e0d (patch) | |
tree | 2e7a8f3a289b018dcdeb18d01af2de2cae952787 /target-i386 | |
parent | Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-20160223-1' into s... (diff) | |
download | qemu-1ef26b1f3025413fffca05a5634580745ef84e0d.tar.gz qemu-1ef26b1f3025413fffca05a5634580745ef84e0d.tar.xz qemu-1ef26b1f3025413fffca05a5634580745ef84e0d.zip |
cpu: 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>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpu.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 0af43a3ae1..c78f824678 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -16,10 +16,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ -#include <stdlib.h> -#include <stdio.h> -#include <string.h> -#include <inttypes.h> +#include "qemu/osdep.h" #include "cpu.h" #include "sysemu/kvm.h" |