From: Johannes Schindelin Date: Thu, 9 Oct 2025 07:46:01 +0000 (+0000) Subject: mingw: order `#include`s alphabetically X-Git-Tag: v2.52.0-rc0~43^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15b8abde07de2cbce2dac3630324ead349e168ee;p=thirdparty%2Fgit.git mingw: order `#include`s alphabetically It allows for more consistent patches that way. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- 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 -#include -#include -#include -#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 +#include +#include #define SECURITY_WIN32 #include +#include #include #define STATUS_DELETE_PENDING ((NTSTATUS) 0xC0000056)