fexecve.c 324 字节
Newer Older
R
Rich Felker 已提交
1 2
#include <unistd.h>
#include <stdio.h>
3
#include <errno.h>
R
Rich Felker 已提交
4 5 6 7 8 9

int fexecve(int fd, char *const argv[], char *const envp[])
{
	static const char proc[] = "/proc/self/fd/%d";
	char buf[sizeof proc + 3*sizeof(int)];
	snprintf(buf, sizeof buf, proc, fd);
10 11 12
	execve(buf, argv, envp);
	if (errno == ENOENT) errno = EBADF;
	return -1;
R
Rich Felker 已提交
13
}