diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-10-20 14:12:17 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-20 14:12:17 -0700 |
| commit | fc00bf0f9c609ff4ad3a8a4cf60bf53af3f93fc7 (patch) | |
| tree | 15d2f6855ae2de679eb05f8b253a5f95051cf233 | |
| parent | Merge branch 'dk/stash-apply-index' (diff) | |
| parent | mingw: order `#include`s alphabetically (diff) | |
| download | git-fc00bf0f9c609ff4ad3a8a4cf60bf53af3f93fc7.tar.gz git-fc00bf0f9c609ff4ad3a8a4cf60bf53af3f93fc7.zip | |
Merge branch 'js/mingw-includes-cleanup'
Code clean-up.
* js/mingw-includes-cleanup:
mingw: order `#include`s alphabetically
mingw: avoid relative `#include`s
| -rw-r--r-- | compat/mingw.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/compat/mingw.c b/compat/mingw.c index 8538e3d172..736a07a028 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -1,26 +1,26 @@ #define USE_THE_REPOSITORY_VARIABLE #define DISABLE_SIGN_COMPARE_WARNINGS -#include "../git-compat-util.h" +#include "git-compat-util.h" +#include "abspath.h" +#include "alloc.h" +#include "config.h" +#include "dir.h" +#include "environment.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 <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 "../environment.h" -#include "../trace2.h" -#include "../symlinks.h" -#include "../wrapper.h" -#include "dir.h" -#include "gettext.h" +#include <sddl.h> #define SECURITY_WIN32 #include <sspi.h> +#include <wchar.h> #include <winternl.h> #define STATUS_DELETE_PENDING ((NTSTATUS) 0xC0000056) |
