aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/base64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/base64.cpp')
-rw-r--r--src/cmd/base64.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cmd/base64.cpp b/src/cmd/base64.cpp
index 34711857c..de9954bab 100644
--- a/src/cmd/base64.cpp
+++ b/src/cmd/base64.cpp
@@ -15,7 +15,9 @@
#include <botan/b64_filt.h>
#include <botan/pipe.h>
-int base64_main(int argc, char* argv[])
+namespace {
+
+int base64(int argc, char* argv[])
{
if(argc < 2)
{
@@ -83,3 +85,7 @@ int base64_main(int argc, char* argv[])
}
return 0;
}
+
+REGISTER_APP(base64);
+
+}