diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-05-03 16:14:38 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-03 16:14:38 -0400 |
commit | 2d07aef3cc4ed21b7d66602912f74c287f5cb395 (patch) | |
tree | 522124c8f330c7407dd3cf762f98ee2e2f29fc59 /src/common/crypto_rand.c | |
parent | bd153e46408fa4f9432a5de1b1f5f106f00e34cf (diff) | |
download | tor-2d07aef3cc4ed21b7d66602912f74c287f5cb395.tar.gz tor-2d07aef3cc4ed21b7d66602912f74c287f5cb395.zip |
Move some includes around to try to fix windows builds
Diffstat (limited to 'src/common/crypto_rand.c')
-rw-r--r-- | src/common/crypto_rand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto_rand.c b/src/common/crypto_rand.c index 66506235a0..5abf0b0968 100644 --- a/src/common/crypto_rand.c +++ b/src/common/crypto_rand.c @@ -14,13 +14,13 @@ #ifndef CRYPTO_RAND_PRIVATE #define CRYPTO_RAND_PRIVATE +#include "crypto_rand.h" + #ifdef _WIN32 #include <windows.h> #include <wincrypt.h> #endif /* defined(_WIN32) */ -#include "crypto_rand.h" - #include "container.h" #include "compat.h" #include "compat_openssl.h" |