Git fork

Merge branch 'js/mingw-includes-cleanup'

Code clean-up.

* js/mingw-includes-cleanup:
mingw: order `#include`s alphabetically
mingw: avoid relative `#include`s

+15 -15
+15 -15
compat/mingw.c
··· 1 1 #define USE_THE_REPOSITORY_VARIABLE 2 2 #define DISABLE_SIGN_COMPARE_WARNINGS 3 3 4 - #include "../git-compat-util.h" 4 + #include "git-compat-util.h" 5 + #include "abspath.h" 6 + #include "alloc.h" 7 + #include "config.h" 8 + #include "dir.h" 9 + #include "environment.h" 10 + #include "gettext.h" 11 + #include "run-command.h" 12 + #include "strbuf.h" 13 + #include "symlinks.h" 14 + #include "trace2.h" 5 15 #include "win32.h" 16 + #include "win32/lazyload.h" 17 + #include "wrapper.h" 6 18 #include <aclapi.h> 7 - #include <sddl.h> 8 19 #include <conio.h> 9 - #include <wchar.h> 10 - #include "../strbuf.h" 11 - #include "../run-command.h" 12 - #include "../abspath.h" 13 - #include "../alloc.h" 14 - #include "win32/lazyload.h" 15 - #include "../config.h" 16 - #include "../environment.h" 17 - #include "../trace2.h" 18 - #include "../symlinks.h" 19 - #include "../wrapper.h" 20 - #include "dir.h" 21 - #include "gettext.h" 20 + #include <sddl.h> 22 21 #define SECURITY_WIN32 23 22 #include <sspi.h> 23 + #include <wchar.h> 24 24 #include <winternl.h> 25 25 26 26 #define STATUS_DELETE_PENDING ((NTSTATUS) 0xC0000056)