diff options
Diffstat (limited to 'doc/examples/read_ssh.cpp')
-rw-r--r-- | doc/examples/read_ssh.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/examples/read_ssh.cpp b/doc/examples/read_ssh.cpp index 52c758ceb..f6299a29d 100644 --- a/doc/examples/read_ssh.cpp +++ b/doc/examples/read_ssh.cpp @@ -17,6 +17,8 @@ using namespace Botan; +namespace { + u32bit read_u32bit(Pipe& pipe) { byte out[4] = { 0 }; @@ -104,6 +106,8 @@ Public_Key* read_ssh_pubkey(const std::string& file) return 0; } +} + #include <botan/init.h> #include <iostream> |