diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2025-10-09 07:46:01 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-09 13:21:28 -0700 |
| commit | 15b8abde07de2cbce2dac3630324ead349e168ee (patch) | |
| tree | e1afb40756ac207c135ee10dbf4494852727e8b9 | |
| parent | b9c6962ad5b2f735d8281eb03646cefcf01886de (diff) | |
mingw: order `#include`s alphabetically
It allows for more consistent patches that way.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | compat/mingw.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/compat/mingw.c b/compat/mingw.c index da99473f56..736a07a028 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -2,25 +2,25 @@ #define DISABLE_SIGN_COMPARE_WARNINGS #include "git-compat-util.h" -#include "win32.h" -#include <aclapi.h> -#include <sddl.h> -#include <conio.h> -#include <wchar.h> -#include "strbuf.h" -#include "run-command.h" #include "abspath.h" #include "alloc.h" -#include "win32/lazyload.h" #include "config.h" +#include "dir.h" #include "environment.h" -#include "trace2.h" +#include "gettext.h" +#include "run-command.h" +#include "strbuf.h" #include "symlinks.h" +#include "trace2.h" +#include "win32.h" +#include "win32/lazyload.h" #include "wrapper.h" -#include "dir.h" -#include "gettext.h" +#include <aclapi.h> +#include <conio.h> +#include <sddl.h> #define SECURITY_WIN32 #include <sspi.h> +#include <wchar.h> #include <winternl.h> #define STATUS_DELETE_PENDING ((NTSTATUS) 0xC0000056) |
