Skip to content

Commit f864b7f

Browse files
committed
mingw: order #includes alphabetically
It allows for more consistent patches that way. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 697d96e commit f864b7f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

compat/mingw.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
#define DISABLE_SIGN_COMPARE_WARNINGS
33

44
#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"
125
#include "abspath.h"
136
#include "alloc.h"
14-
#include "win32/lazyload.h"
157
#include "config.h"
8+
#include "dir.h"
169
#include "environment.h"
17-
#include "trace2.h"
10+
#include "gettext.h"
11+
#include "run-command.h"
12+
#include "strbuf.h"
1813
#include "symlinks.h"
14+
#include "trace2.h"
15+
#include "win32.h"
16+
#include "win32/lazyload.h"
1917
#include "wrapper.h"
20-
#include "dir.h"
21-
#include "gettext.h"
18+
#include <aclapi.h>
19+
#include <conio.h>
20+
#include <sddl.h>
2221
#define SECURITY_WIN32
2322
#include <sspi.h>
23+
#include <wchar.h>
2424
#include <winternl.h>
2525

2626
#define STATUS_DELETE_PENDING ((NTSTATUS) 0xC0000056)

0 commit comments

Comments
 (0)