diff options
author | lloyd <[email protected]> | 2009-12-02 22:11:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-02 22:11:28 +0000 |
commit | f63359f348d347bebee036b11d0c9641ee3d56d6 (patch) | |
tree | a6a270d7e0d2fcbef7224796c4019a3fff2a0da4 /src/libstate | |
parent | f52637d5e6b3ae820130b0053091e8fd4da74a02 (diff) |
Add missing header guards to package.h and botan.h
Change serp_simd_sbox.h's header guard to use the leading BOTAN_ prefix for
proper macro namespacing.
Diffstat (limited to 'src/libstate')
-rw-r--r-- | src/libstate/botan.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstate/botan.h b/src/libstate/botan.h index 3fa131216..a88edb59b 100644 --- a/src/libstate/botan.h +++ b/src/libstate/botan.h @@ -5,6 +5,9 @@ * Distributed under the terms of the Botan license */ +#ifndef BOTAN_BOTAN_H__ +#define BOTAN_BOTAN_H__ + #include <botan/init.h> #include <botan/lookup.h> #include <botan/libstate.h> @@ -16,3 +19,5 @@ #if defined(BOTAN_HAS_AUTO_SEEDING_RNG) #include <botan/auto_rng.h> #endif + +#endif |