blob: f434d701d63f69d312c9915fdd76825bc927c154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#include <sys/types.h>
#include <skalibs/djbunix.h>
#include <execline/config.h>
#include <execline/execline.h>
pid_t el_spawn1 (char const *prog, char const *const *argv, char const *const *envp, int *fd, int w)
{
if (!argv[0])
{
static char const *const newargv[3] = { EXECLINE_BINPREFIX "exit", "0", 0 } ;
return child_spawn1_pipe(newargv[0], newargv, 0, fd, w) ;
}
else return child_spawn1_pipe(prog, argv, envp, fd, w) ;
}
|