Skip to content

Commit bf4a0fa

Browse files
committed
Merge branch 'organize-mingw-includes'
Following in the footsteps of the many, many recent refactorings, this patch series orders the `#include` statements in `compat/mingw.c`. Signed-off-by: Johannes Schindelin <[email protected]>
2 parents 6c4748b + f864b7f commit bf4a0fa

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

compat/mingw.c

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
#define USE_THE_REPOSITORY_VARIABLE
22
#define DISABLE_SIGN_COMPARE_WARNINGS
33

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"
515
#include "win32.h"
16+
#include "win32/lazyload.h"
17+
#include "wrapper.h"
618
#include <aclapi.h>
7-
#include <sddl.h>
819
#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>
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)