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

#include <unistd.h>

#include <skalibs/exec.h>

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