diff options
author | lloyd <[email protected]> | 2008-06-11 01:28:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-11 01:28:32 +0000 |
commit | 3ce3dce2ff22634ee250ce6de113d1fd455019a4 (patch) | |
tree | 682e10550f00b070881d9908d7768af02096d9a3 /doc/examples/base64.cpp | |
parent | 845d40bd4c9d37bcd2c79541123fed044e66c2f8 (diff) |
Add missing headers in the example problems, noticed while compiling under
GCC 4.3. Missing <memory> for auto_ptr and <cstdlib> for atoi
Diffstat (limited to 'doc/examples/base64.cpp')
-rw-r--r-- | doc/examples/base64.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/base64.cpp b/doc/examples/base64.cpp index 8f9a06648..9697e1376 100644 --- a/doc/examples/base64.cpp +++ b/doc/examples/base64.cpp @@ -12,6 +12,7 @@ This file is in the public domain #include <string> #include <vector> #include <cstring> +#include <cstdlib> #include <botan/botan.h> int main(int argc, char* argv[]) |