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>
Johannes Schindelin committed
Oct 9, 2025 at 07:46 UTC
15b8abde07de2cbce2dac3630324ead349e168ee
1 file changed
+11
-11
compat/mingw.c
+11
-11
@@ -2,25 +2,25 @@
2
#define DISABLE_SIGN_COMPARE_WARNINGS
3
4
#include "git-compat-util.h"
5
-#include "win32.h"
6
-#include <aclapi.h>
7
-#include <sddl.h>
8
-#include <conio.h>
9
-#include <wchar.h>
10
-#include "strbuf.h"
11
-#include "run-command.h"
5
#include "abspath.h"
6
#include "alloc.h"
14
-#include "win32/lazyload.h"
7
#include "config.h"
8
+#include "dir.h"
9
#include "environment.h"
17
-#include "trace2.h"
10
+#include "gettext.h"
11
+#include "run-command.h"
12
+#include "strbuf.h"
13
#include "symlinks.h"
14
+#include "trace2.h"
15
+#include "win32.h"
16
+#include "win32/lazyload.h"
17
#include "wrapper.h"
20
-#include "dir.h"
21
-#include "gettext.h"
18
+#include <aclapi.h>
19
+#include <conio.h>
20
+#include <sddl.h>
21
#define SECURITY_WIN32
22
#include <sspi.h>
23
+#include <wchar.h>
24
#include <winternl.h>
25
26
#define STATUS_DELETE_PENDING ((NTSTATUS) 0xC0000056)