summaryrefslogtreecommitdiff
path: root/src/libenvexec/exec0_ae.c
blob: 14aac8b309f23328397a2eb1cbdfa88a427b5474 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* ISC license. */

#include <unistd.h>

#include <skalibs/exec.h>

void exec0_ae (char const *file, char const *const *argv, char const *const *envp)
{
  if (!argv[0]) _exit(0) ;
  exec_ae(file, argv, envp) ;
}