diff options
Diffstat (limited to 'crypto-search.cpp')
-rw-r--r-- | crypto-search.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/crypto-search.cpp b/crypto-search.cpp index 4ece311..d08efc2 100644 --- a/crypto-search.cpp +++ b/crypto-search.cpp @@ -24,8 +24,10 @@ #include <unistd.h> #include "generic.h" #include "Input.h" +#include "Main.h" -int main(int argc, char ** argv) { +CODE_BEGINS +int startup(void) throw (GeneralException) { int size, mind, maxd, delta, len, i, j; char * buffer, * str; Handle * h; @@ -89,4 +91,7 @@ int main(int argc, char ** argv) { } delete h; + + return 0; } +CODE_ENDS |