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