diff options
Diffstat (limited to 'src/core/rng.cpp')
-rw-r--r-- | src/core/rng.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/rng.cpp b/src/core/rng.cpp index fec9641ff..05746f188 100644 --- a/src/core/rng.cpp +++ b/src/core/rng.cpp @@ -4,19 +4,20 @@ *************************************************/ #include <botan/rng.h> -#include <botan/lookup.h> #include <botan/util.h> #include <botan/parsing.h> #include <botan/timers.h> #if defined(BOTAN_HAS_RANDPOOL) + #include <botan/lookup.h> #include <botan/randpool.h> -#endif #if defined(BOTAN_HAS_X931_RNG) #include <botan/x931_rng.h> #endif +#endif + #if defined(BOTAN_HAS_TIMER_HARDWARE) #include <botan/tm_hard.h> #elif defined(BOTAN_HAS_TIMER_POSIX) |