From: Eric Haszlakiewicz Date: Mon, 6 Apr 2020 02:47:34 +0000 (+0000) Subject: Don't let clang-format rearrange Windows includes, since they need to be in a particu... X-Git-Tag: json-c-0.14-20200419~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e19c26caeb698dda682720f37b0d63dd502bf5c;p=thirdparty%2Fjson-c.git Don't let clang-format rearrange Windows includes, since they need to be in a particular order. --- diff --git a/random_seed.c b/random_seed.c index fd654a22..fc19e26d 100644 --- a/random_seed.c +++ b/random_seed.c @@ -186,8 +186,10 @@ static int get_dev_random_seed(void) #define HAVE_CRYPTGENRANDOM 1 -#include +/* clang-format off */ #include +#include +/* clang-format on */ #ifndef __GNUC__ #pragma comment(lib, "advapi32.lib") #endif