blob: 7d54ec9112c417904b8fe9bd580cf6e37f4258c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"
int execve(const char *path, char *const argv[], char *const envp[])
{
SCNO(scno, "execve", -1);
errno = -__libc.syscall(scno, path, argv, envp);
return -1;
}
/*
POSIX(1)
*/
|