blob: 4b7f50f2d3d6ea22c4de14776f9aca90a84caaa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#include <sys/types.h>
#include <skalibs/djbunix.h>
#include <execline/execline.h>
pid_t el_spawn0 (char const *prog, char const *const *argv, char const *const *envp)
{
if (!argv[0])
{
static char const *const newargv[2] = { "/bin/true", 0 } ;
return child_spawn0(newargv[0], newargv, 0) ;
}
else return child_spawn0(prog, argv, envp) ;
}
|