diff options
author | lloyd <[email protected]> | 2008-06-11 13:35:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-11 13:35:03 +0000 |
commit | 0f1559b06cb7600c55672d41beeb71083d2cc879 (patch) | |
tree | 6c61592c9b39bc5afe2778206b6c7b1cfdc38067 | |
parent | f83988fcd5d8a2d6752d5a0b0c4133207737c1c1 (diff) |
Add includes to ensure decls for global functions are visible at call points
-rw-r--r-- | src/config.cpp | 1 | ||||
-rw-r--r-- | src/engine.cpp | 2 | ||||
-rw-r--r-- | src/timers.cpp | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp index 6d2a4c90f..f274de560 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -7,6 +7,7 @@ #include <botan/libstate.h> #include <botan/mutex.h> #include <botan/stl_util.h> +#include <botan/lookup.h> #include <string> namespace Botan { diff --git a/src/engine.cpp b/src/engine.cpp index 071ab2833..d2cc66138 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -5,6 +5,8 @@ #include <botan/engine.h> #include <botan/libstate.h> +#include <botan/lookup.h> +#include <botan/look_add.h> #include <botan/eng_def.h> namespace Botan { diff --git a/src/timers.cpp b/src/timers.cpp index 55ee12236..4f482916f 100644 --- a/src/timers.cpp +++ b/src/timers.cpp @@ -5,6 +5,7 @@ #include <botan/timers.h> #include <botan/loadstor.h> +#include <botan/util.h> #include <ctime> namespace Botan { |