diff options
| author | Jan Sucan <jan@jansucan.com> | 2021-05-30 18:10:42 +0200 |
|---|---|---|
| committer | Jan Sucan <jan@jansucan.com> | 2021-05-30 18:10:42 +0200 |
| commit | f1ced068f1eccdf2866a91334d4e271e8f94802d (patch) | |
| tree | 3b582b4a96dacdc8bb1420dae964a49f8f7bbfdd /src/main.c | |
| parent | e19731f6d38aa0931f59bba95565c8f40f1dc3b0 (diff) | |
Unify ordering of the includes
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -24,6 +24,13 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "backup.h" +#include "file.h" +#include "options.h" +#include "print.h" +#include "resources.h" +#include "restore.h" + #include <endian.h> #include <errno.h> #include <inttypes.h> @@ -32,13 +39,6 @@ #include <stdlib.h> #include <string.h> -#include "backup.h" -#include "file.h" -#include "options.h" -#include "print.h" -#include "resources.h" -#include "restore.h" - static void clean_exit(resources_t *const res, int exit_code) { |
