comparison src/proto.nacl0.c @ 38:d9f5caa13898

Added support for NetBSD, added command line parsing to provide configuration options
author Ivo Smits <Ivo@UCIS.nl>
date Mon, 06 May 2013 22:53:20 +0200
parents bb4bbf380938
children 54d28a81ca99
comparison
equal deleted inserted replaced
37:bb4bbf380938 38:d9f5caa13898
96 init, 96 init,
97 sizeof(struct qt_proto_data_nacl0), 97 sizeof(struct qt_proto_data_nacl0),
98 }; 98 };
99 99
100 #ifndef COMBINED_BINARY 100 #ifndef COMBINED_BINARY
101 int main() { 101 int main(int argc, char** argv) {
102 print_header(); 102 print_header();
103 if (qtprocessargs(argc, argv) < 0) return -1;
103 return qtrun(&qtproto_nacl0); 104 return qtrun(&qtproto_nacl0);
104 } 105 }
105 #endif 106 #endif