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/constructs/aont | |
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/constructs/aont')
-rw-r--r-- | src/constructs/aont/package.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/constructs/aont/package.h b/src/constructs/aont/package.h index 35d2a23fc..5024c0421 100644 --- a/src/constructs/aont/package.h +++ b/src/constructs/aont/package.h @@ -6,6 +6,9 @@ * Distributed under the terms of the Botan license */ +#ifndef BOTAN_AONT_PACKAGE_TRANSFORM_H__ +#define BOTAN_AONT_PACKAGE_TRANSFORM_H__ + #include <botan/block_cipher.h> #include <botan/rng.h> @@ -43,3 +46,5 @@ void unpackage(BlockCipher* cipher, } } + +#endif |