예제 #1
0
파일: collect-utils.c 프로젝트: 0day-ci/gcc
void
fork_execute (const char *prog, char **argv, bool use_atfile)
{
  struct pex_obj *pex;

  pex = collect_execute (prog, argv, NULL, NULL,
			 PEX_LAST | PEX_SEARCH, use_atfile);
  do_wait (prog, pex);
}
예제 #2
0
파일: tlink.c 프로젝트: aosm/gcc_40
static int
tlink_execute (const char *prog, char **argv, const char *redir)
{
  collect_execute (prog, argv, redir);
  return collect_wait (prog);
}