Commit 5220a9bc 5220a9bc6523a3fa41ab04e6565693371ec84db1 by Sergey Poznyakoff

_exit is not portable.

1 parent 58e3e034
......@@ -746,8 +746,8 @@ int mu_spawnvp(const char* prog, const char* const av_[], int* stat)
sigaction (SIGQUIT, &savequit, NULL);
sigprocmask (SIG_SETMASK, &savemask, NULL);
execvp(av[0], av);
_exit (127); /* exec error */
execvp (av[0], av);
exit (127); /* exec error */
}
else
{ /* parent */
......