diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-02-06 12:37:02 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-02-06 22:05:39 -0500 |
commit | 21d184a184b2ac4e4b8a1ff9853cb50de31a41fe (patch) | |
tree | 08d05e5f59ab75ed6bb4740bef6d5d68ced38a36 /src/lib | |
parent | 8ca808f81d28bbae9e9059172a7b7479d20e9594 (diff) | |
download | tor-21d184a184b2ac4e4b8a1ff9853cb50de31a41fe.tar.gz tor-21d184a184b2ac4e4b8a1ff9853cb50de31a41fe.zip |
Remove extraneous #if/#endif wrapper in crypto_rand.c
I don't know how this got here, but this kind of a wrapper only
belongs in a header file.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/crypt_ops/crypto_rand.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/crypt_ops/crypto_rand.c b/src/lib/crypt_ops/crypto_rand.c index f45ff719d3..5a739a8f1b 100644 --- a/src/lib/crypt_ops/crypto_rand.c +++ b/src/lib/crypt_ops/crypto_rand.c @@ -11,7 +11,6 @@ * number generators, and working with randomness. **/ -#ifndef CRYPTO_RAND_PRIVATE #define CRYPTO_RAND_PRIVATE #include "lib/crypt_ops/crypto_rand.h" @@ -737,5 +736,3 @@ crypto_force_rand_ssleay(void) #endif return 0; } - -#endif /* !defined(CRYPTO_RAND_PRIVATE) */ |