summaryrefslogtreecommitdiff
path: root/src/libstddjb/xpathexec.c
blob: 473f682cf9a630a4f89a160267c9965a4dae6716 (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 xpathexec (char const *const *argv)
{
  pathexec(argv) ;
  strerr_dieexec(errno == ENOENT ? 127 : 126, argv[0]) ;
}