summaryrefslogtreecommitdiff
path: root/src/libexecline/el_spawn1.c
blob: d9a7f87e777a0ec52614d45f69774c1792369b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ISC license. */

#include <skalibs/cspawn.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) ;
}