diff options
author | Eric Blake <eblake@redhat.com> | 2017-07-21 08:50:47 -0500 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2017-07-24 08:53:08 -0500 |
commit | c2a3d7dad2e153668b5a004e4f8336da92c476e1 (patch) | |
tree | 48be9ee3339f524ba0b3cd749142c394da5787c7 /qemu-img.c | |
parent | be3771338fbf6368c63cc6e3406ac1423e62c01a (diff) |
maint: Reorder include directives for qemu-{nbd, io}
HACKING recommends listing system includes right after osdep.h,
and before any other in-project headers.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20170721135047.25005-3-eblake@redhat.com>
Diffstat (limited to 'qemu-img.c')
-rw-r--r-- | qemu-img.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu-img.c b/qemu-img.c index eb32b93e90..f4d5f0d77d 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -22,6 +22,8 @@ * THE SOFTWARE. */ #include "qemu/osdep.h" +#include <getopt.h> + #include "qemu-version.h" #include "qapi/error.h" #include "qapi/util.h" @@ -43,7 +45,6 @@ #include "block/qapi.h" #include "crypto/init.h" #include "trace/control.h" -#include <getopt.h> #define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \ "\n" QEMU_COPYRIGHT "\n" |