blob: 97cdea4037cd6751fbd68939e269650fb3247702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#if 0
#include <errno.h>
#include <sys/types.h>
#include <unistd.h>
#include "_syscall.h"
int execve(const char *path, char *const argv[], char *const envp[])
{
SYSCALL_NUMBER(scno, execve, -1);
errno = -__syscall(scno, path, argv, envp);
return -1;
}
/*
POSIX(1)
*/
#endif
|