blob: 3a3363e216e30a46d9bf0cb3d78284509100dd06 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <skalibs/djbunix.h>
#include <skalibs/strerr2.h>
void xexecvep (char const *file, char const *const *argv, char const *const *envp, char const *path)
{
execvep(file, argv, envp, path) ;
strerr_dieexec(111, file) ;
}
|