comparison lwasm/main.c @ 328:591d01b343b9

checkpoint - input layer
author lost
date Sat, 13 Feb 2010 06:08:26 +0000
parents 619fd6ad4ab9
children c15cca3ae6a2
comparison
equal deleted inserted replaced
327:80826bf2827b 328:591d01b343b9
172 asmstate.include_list = lw_stringlist_create(); 172 asmstate.include_list = lw_stringlist_create();
173 173
174 /* parse command line arguments */ 174 /* parse command line arguments */
175 argp_parse(&argp, argc, argv, 0, 0, &asmstate); 175 argp_parse(&argp, argc, argv, 0, 0, &asmstate);
176 176
177 if (!asmstate.output_file)
178 {
179 asmstate.output_file = lw_strdup("a.out");
180 }
181
177 exit(0); 182 exit(0);
178 } 183 }