blob: 3098645da5a7c8762d492d59cebc68afd17cc2ad (
plain) (
tree)
|
|
#include <unistd.h>
#include <stdio.h>
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);
return execve(buf, argv, envp);
}
|