diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-31 19:56:42 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-31 19:56:42 -0400 |
commit | a4c0a0e81eb3616d7d66806e9ac8ea7c8d3bf439 (patch) | |
tree | f9d79c3198d2d19ee41ba74e57f45f0f89107924 /src/test/test_crypto_ope.c | |
parent | fdaa483098d723b4be24a4e861c4280a67a3d4b0 (diff) | |
download | tor-a4c0a0e81eb3616d7d66806e9ac8ea7c8d3bf439.tar.gz tor-a4c0a0e81eb3616d7d66806e9ac8ea7c8d3bf439.zip |
Fix issues with crypto_ope compilation now that crypto.h is gone
Diffstat (limited to 'src/test/test_crypto_ope.c')
-rw-r--r-- | src/test/test_crypto_ope.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/test_crypto_ope.c b/src/test/test_crypto_ope.c index 7dcad7b4b2..4e7b952327 100644 --- a/src/test/test_crypto_ope.c +++ b/src/test/test_crypto_ope.c @@ -7,9 +7,11 @@ #define CRYPTO_OPE_PRIVATE +#include "lib/cc/compat_compiler.h" #include "lib/crypt_ops/crypto_ope.h" -#include "lib/crypt_ops/crypto.h" +#include "lib/crypt_ops/crypto_cipher.h" #include "lib/encoding/binascii.h" +#include "lib/malloc/malloc.h" #include "test/test.h" #include "tinytest.h" |