1#include <errno.h>
2#include <unistd.h>
3
4int fexecve(int fd, char* const argv[], char* const envp[]) {
5    errno = ENOSYS;
6    return -1;
7}
8