From 94e6637c33d1ea5616be3af486c8f75d18f55ad4 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kwvg@users.noreply.github.com> Date: Thu, 5 Jan 2023 19:36:10 +0000 Subject: [PATCH] merge bitcoin#26826: remove windows-only compat.h usage in randomenv --- src/randomenv.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/randomenv.cpp b/src/randomenv.cpp index d722256544..01e8f62e9c 100644 --- a/src/randomenv.cpp +++ b/src/randomenv.cpp @@ -14,21 +14,21 @@ #include #include #include -#include // for GetTime() -#ifdef WIN32 -#include -#endif +#include #include #include +#include +#include #include #include #include #include -#include -#include -#ifndef WIN32 +#ifdef WIN32 +#include +#include +#else #include // must go before a number of other headers #include #include