comparison src/proto.raw.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 5ba185ca7102
children 66d9d80215f0
comparison
equal deleted inserted replaced
37:bb4bbf380938 38:d9f5caa13898
46 NULL, 46 NULL,
47 0, 47 0,
48 }; 48 };
49 49
50 #ifndef COMBINED_BINARY 50 #ifndef COMBINED_BINARY
51 int main() { 51 int main(int argc, char** argv) {
52 print_header(); 52 print_header();
53 if (qtprocessargs(argc, argv) < 0) return -1;
53 return qtrun(&qtproto_raw); 54 return qtrun(&qtproto_raw);
54 } 55 }
55 #endif 56 #endif