diff options
author | Jack Lloyd <[email protected]> | 2019-07-19 18:02:00 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-07-19 18:02:00 -0400 |
commit | dbf0d0c78be6bfb06e58e59201241b0e5f13adc7 (patch) | |
tree | e428b6c25ec54cde5ce57403fb08b53349854e37 /src/lib/rng | |
parent | 730f76a790e7d751eccf0ea6e723f33afbde0a90 (diff) |
Indent conditional includes
This broke the amalgamation on iOS
GH #2045
Diffstat (limited to 'src/lib/rng')
-rw-r--r-- | src/lib/rng/system_rng/system_rng.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/lib/rng/system_rng/system_rng.cpp b/src/lib/rng/system_rng/system_rng.cpp index d5588c7d1..af508fd90 100644 --- a/src/lib/rng/system_rng/system_rng.cpp +++ b/src/lib/rng/system_rng/system_rng.cpp @@ -8,27 +8,27 @@ #include <botan/system_rng.h> #if defined(BOTAN_TARGET_OS_HAS_RTLGENRANDOM) -#include <botan/dyn_load.h> -#define NOMINMAX 1 -#define _WINSOCKAPI_ // stop windows.h including winsock.h -#include <windows.h> + #include <botan/dyn_load.h> + #define NOMINMAX 1 + #define _WINSOCKAPI_ // stop windows.h including winsock.h + #include <windows.h> #elif defined(BOTAN_TARGET_OS_HAS_CRYPTO_NG) -#include <bcrypt.h> + #include <bcrypt.h> #elif defined(BOTAN_TARGET_OS_HAS_ARC4RANDOM) -#include <stdlib.h> + #include <stdlib.h> #elif defined(BOTAN_TARGET_OS_HAS_GETRANDOM) -#include <sys/random.h> -#include <errno.h> + #include <sys/random.h> + #include <errno.h> #elif defined(BOTAN_TARGET_OS_HAS_DEV_RANDOM) -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <unistd.h> -#include <errno.h> + #include <sys/types.h> + #include <sys/stat.h> + #include <fcntl.h> + #include <unistd.h> + #include <errno.h> #endif namespace Botan { |