From fbf48dde192018135b3ac8a3b21e5200e7f4d7f0 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 4 Jun 2025 11:42:26 +0200 Subject: Change order of includes to prevent compiler warning Otherwise _WIN32_WINNT redefined warning may occur. --- src/sha512.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sha512.c') diff --git a/src/sha512.c b/src/sha512.c index c27f9ff..5b3ca02 100644 --- a/src/sha512.c +++ b/src/sha512.c @@ -9,11 +9,11 @@ * Tom St Denis, tomstdenis@gmail.com, http://libtom.org */ -#include - #include "common.h" #include "libimobiledevice-glue/sha.h" +#include + /* the K array */ static const uint64_t K[80] = { UINT64_C(0x428a2f98d728ae22), UINT64_C(0x7137449123ef65cd), -- cgit v1.1-32-gdbae