diff options
author | Rich Salz <rsalz@openssl.org> | 2017-08-03 22:21:01 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-08-06 23:06:19 +0200 |
commit | 5f8dd0f849d3bb87b2224715f8880716f39e9b0a (patch) | |
tree | 3ce718efa6c281c5f8ec1680fb4e7dd9f9811306 /crypto/threads_none.c | |
parent | Add predicatable RAND_METHOD to test ENGINE (diff) | |
download | openssl-5f8dd0f849d3bb87b2224715f8880716f39e9b0a.tar.xz openssl-5f8dd0f849d3bb87b2224715f8880716f39e9b0a.zip |
Add missing include of cryptlib.h
Also use "" not <> for all include cryptlib
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4082)
Diffstat (limited to 'crypto/threads_none.c')
-rw-r--r-- | crypto/threads_none.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/threads_none.c b/crypto/threads_none.c index 1fc2f0fe6c..f7e53593a2 100644 --- a/crypto/threads_none.c +++ b/crypto/threads_none.c @@ -8,7 +8,7 @@ */ #include <openssl/crypto.h> -#include <internal/cryptlib.h> +#include "internal/cryptlib.h" #if !defined(OPENSSL_THREADS) || defined(CRYPTO_TDEBUG) |