Unverified Commit d959e75f by Edward Thomson Committed by GitHub

Merge pull request #6373 from christoph-cullmann/fix_compile_WIN32_LEAN_AND_MEAN

fix compile on Windows with -DWIN32_LEAN_AND_MEAN
parents 5250fa9e 6ad26cdb
...@@ -14,6 +14,10 @@ See <http://creativecommons.org/publicdomain/zero/1.0/>. */ ...@@ -14,6 +14,10 @@ See <http://creativecommons.org/publicdomain/zero/1.0/>. */
# include <sys/random.h> # include <sys/random.h>
#endif #endif
#if defined(GIT_WIN32)
# include <wincrypt.h>
#endif
static uint64_t state[4]; static uint64_t state[4];
static git_mutex state_lock; static git_mutex state_lock;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment