blob: 52414521e787b384c7eac2fea7e384dc6de0eb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
/* MT-unsafe */
#include <unistd.h>
#include <skalibs/djbunix.h>
void pathexec0 (char const *const *argv)
{
if (!argv[0]) _exit(0) ;
pathexec(argv) ;
}
|