aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-12-02 22:11:28 +0000
committerlloyd <[email protected]>2009-12-02 22:11:28 +0000
commitf63359f348d347bebee036b11d0c9641ee3d56d6 (patch)
treea6a270d7e0d2fcbef7224796c4019a3fff2a0da4 /src/libstate
parentf52637d5e6b3ae820130b0053091e8fd4da74a02 (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.h5
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