blob: ed0848cda8179fbab555d2371c2cc72c45ad0e57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#include <errno.h>
#include <skalibs/djbunix.h>
#include <skalibs/strerr2.h>
void xpathexec0 (char const *const *argv)
{
pathexec0(argv) ;
strerr_dieexec(errno == ENOENT ? 127 : 126, argv[0]) ;
}
|