blob: 6a92bb66405b100f9cea09a428b74189e5ac175b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
#include <err.h>
#include <unistd.h>
#include <fcntl.h>
char *args[] = { "batchrun", NULL };
int
main()
{
//fcntl(3, F_SETFD, FD_CLOEXEC);
fexecve(3, args, NULL);
err(1, "fexecve()");
}
|