diff options
author | 2021-09-11 16:07:33 -0400 | |
---|---|---|
committer | 2021-09-11 16:09:27 -0400 | |
commit | 0da505b43eb7e6d9d391efc70f68a752bcdcd643 (patch) | |
tree | 38c06fbfded30bc6854a63b3f661d4162acc4d0d /src/tools/imgtool/modules/concept.cpp | |
parent | fae732dc5d3b5ea2f03de3ad7b1f0740c43d7c4e (diff) |
Formats-related refactoring
- Remove opresolv.h from emu.h and some other base headers
- Split legacy floppy image class into a separate file
- Clean up a lot of #includes in src/lib and src/tools/imgtool
Diffstat (limited to 'src/tools/imgtool/modules/concept.cpp')
-rw-r--r-- | src/tools/imgtool/modules/concept.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tools/imgtool/modules/concept.cpp b/src/tools/imgtool/modules/concept.cpp index 71417b5aafb..7bfa7b4d269 100644 --- a/src/tools/imgtool/modules/concept.cpp +++ b/src/tools/imgtool/modules/concept.cpp @@ -8,11 +8,14 @@ Raphael Nabet, 2003 */ +#include "imgtool.h" + +#include "opresolv.h" + +#include <climits> #include <cstdio> -#include <cstring> #include <cstdlib> -#include <climits> -#include "imgtool.h" +#include <cstring> struct UINT16xE { |