diff options
author | lloyd <[email protected]> | 2007-10-19 18:09:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-10-19 18:09:58 +0000 |
commit | 11d6a889becbb8fe6c2d78dd60b9673b791c17b9 (patch) | |
tree | 521e2695ae9ed2b7481484e20b1bd33ed174828b /modules | |
parent | 4c6fa9a9040a68150531da9327b7f40857ffa057 (diff) |
Fix the alg_ia32 module code WRT the recent changes to loadstor.h not being
included by bit_ops.h
Diffstat (limited to 'modules')
-rw-r--r-- | modules/alg_ia32/md4.cpp | 2 | ||||
-rw-r--r-- | modules/alg_ia32/md5.cpp | 2 | ||||
-rw-r--r-- | modules/alg_ia32/serpent.cpp | 2 | ||||
-rw-r--r-- | modules/alg_ia32/sha160.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/alg_ia32/md4.cpp b/modules/alg_ia32/md4.cpp index 4c1fca4c3..497c6dbe7 100644 --- a/modules/alg_ia32/md4.cpp +++ b/modules/alg_ia32/md4.cpp @@ -4,7 +4,7 @@ *************************************************/ #include <botan/md4.h> -#include <botan/bit_ops.h> +#include <botan/loadstor.h> namespace Botan { diff --git a/modules/alg_ia32/md5.cpp b/modules/alg_ia32/md5.cpp index 1f5c0c05b..5f2e7061e 100644 --- a/modules/alg_ia32/md5.cpp +++ b/modules/alg_ia32/md5.cpp @@ -4,7 +4,7 @@ *************************************************/ #include <botan/md5.h> -#include <botan/bit_ops.h> +#include <botan/loadstor.h> namespace Botan { diff --git a/modules/alg_ia32/serpent.cpp b/modules/alg_ia32/serpent.cpp index 3cb5c6305..bf13772e6 100644 --- a/modules/alg_ia32/serpent.cpp +++ b/modules/alg_ia32/serpent.cpp @@ -4,7 +4,7 @@ *************************************************/ #include <botan/serpent.h> -#include <botan/bit_ops.h> +#include <botan/loadstor.h> namespace Botan { diff --git a/modules/alg_ia32/sha160.cpp b/modules/alg_ia32/sha160.cpp index ffa88e080..11cd5dadb 100644 --- a/modules/alg_ia32/sha160.cpp +++ b/modules/alg_ia32/sha160.cpp @@ -4,7 +4,7 @@ *************************************************/ #include <botan/sha160.h> -#include <botan/bit_ops.h> +#include <botan/loadstor.h> namespace Botan { |