blob: 937f1a3debda2208a3de47a0cb1696a8753d6b8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#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) ;
}
|