Searched refs:strlist_prepend (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cc/ |
H A D | cc.c | 1200 strlist_prepend(&args, in compile_input() 1211 strlist_prepend(&args, in compile_input() 1228 strlist_prepend(&args, in compile_input() 1250 strlist_prepend(&args, in assemble_input() 1301 strlist_prepend(&args, find_file(passp, &progdirs, X_OK)); in preprocess_input() 1314 strlist_prepend(&early_linker_flags, outfile); in run_linker() 1315 strlist_prepend(&early_linker_flags, "-o"); in run_linker() 1321 strlist_prepend(&linker_flags, find_file(ld, &progdirs, X_OK)); in run_linker() 1628 fn = which == 'p' ? strlist_prepend : strlist_append; in cksetflags() 1804 strlist_prepend(&preprocessor_flags, defflags[i]); in setup_cpp_flags() [all …]
|
/netbsd-src/external/bsd/pcc/dist/pcc/cc/driver/ |
H A D | driver.c | 347 strlist_prepend(&args, find_file(preprocessor, &progdirs, X_OK)); in preprocess_input() 373 strlist_prepend(&args, find_file(compiler, &progdirs, X_OK)); in compile_input() 394 strlist_prepend(&args, find_file(assembler, &progdirs, X_OK)); in assemble_input() 483 strlist_prepend(&early_linker_flags, final_output); in run_linker() 484 strlist_prepend(&early_linker_flags, "-o"); in run_linker() 507 strlist_prepend(&linker_flags, find_file(linker, &progdirs, X_OK)); in run_linker()
|
H A D | strlist.h | 54 void strlist_prepend(struct strlist *, const char *);
|
H A D | strlist.c | 165 strlist_prepend(struct strlist *l, const char *val) in strlist_prepend() function
|