aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mkimg/vhd.c
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2016-10-03 02:37:28 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2016-10-03 02:37:28 +0000
commit6b1235713e366fa41a69505839d5e7284711544b (patch)
tree1c58dc18f3ccf88695ed6a7f89ea535903dca8fe /usr.bin/mkimg/vhd.c
parent1080fb197b61df4d185516c936937af4846fc2cb (diff)
downloadsrc-6b1235713e366fa41a69505839d5e7284711544b.tar.gz
src-6b1235713e366fa41a69505839d5e7284711544b.zip
Prefer <stdint.h> over <sys/types.h>. While here remove redundant
inclusion of <sys/queue.h>. Move the inclusion of the disk partitioning headers out of order and inbetween standard headers and local header. They will change in a subsequent commit.
Notes
Notes: svn path=/head/; revision=306621
Diffstat (limited to 'usr.bin/mkimg/vhd.c')
-rw-r--r--usr.bin/mkimg/vhd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mkimg/vhd.c b/usr.bin/mkimg/vhd.c
index 822c8fdd9f08..bc8d02b47fd0 100644
--- a/usr.bin/mkimg/vhd.c
+++ b/usr.bin/mkimg/vhd.c
@@ -27,8 +27,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/types.h>
#include <sys/errno.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>