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

#include <skalibs/djbunix.h>

#include <execline/config.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[3] = { EXECLINE_BINPREFIX "exit", "0", 0 } ;
    return child_spawn0(newargv[0], newargv, 0) ;
  }
  else return child_spawn0(prog, argv, envp) ;
}