diff options
author | Jack Lloyd <[email protected]> | 2016-07-20 06:51:30 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-07-20 06:51:30 -0400 |
commit | c7d0f80c43b880a2418e152984437cee66fd4cdc (patch) | |
tree | 380d14144c45d9a8f04d5132de7240786fe284dd /src/lib/rng | |
parent | 4e78e6ea5608edddda8929f3b43a978e89f927ba (diff) |
Fix header guard format
configure.py expects all header guards to match a specific form,
for finding them when generating the amalgamation file.
Diffstat (limited to 'src/lib/rng')
-rw-r--r-- | src/lib/rng/rdrand_rng/rdrand_rng.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/rng/rdrand_rng/rdrand_rng.h b/src/lib/rng/rdrand_rng/rdrand_rng.h index b9445f28e..d0fb37c16 100644 --- a/src/lib/rng/rdrand_rng/rdrand_rng.h +++ b/src/lib/rng/rdrand_rng/rdrand_rng.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_RNG_RDRAND_H_ -#define BOTAN_RNG_RDRAND_H_ +#ifndef BOTAN_RNG_RDRAND_H__ +#define BOTAN_RNG_RDRAND_H__ #include <botan/rng.h> |