MCPcopy Create free account
hub / github.com/git/git / mingw_execvp

Function mingw_execvp

compat/mingw.c:2239–2250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2237}
2238
2239int mingw_execvp(const char *cmd, char *const *argv)
2240{
2241 char *prog = path_lookup(cmd, 0);
2242
2243 if (prog) {
2244 mingw_execv(prog, argv);
2245 free(prog);
2246 } else
2247 errno = ENOENT;
2248
2249 return -1;
2250}
2251
2252int mingw_kill(pid_t pid, int sig)
2253{

Callers

nothing calls this directly

Calls 2

path_lookupFunction · 0.85
mingw_execvFunction · 0.85

Tested by

no test coverage detected