Files
musl/src/process/fexecve.c

14 lines
324 B
C
Raw Normal View History

2011-02-27 02:59:23 -05:00
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
2011-02-27 02:59:23 -05:00
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);
execve(buf, argv, envp);
if (errno == ENOENT) errno = EBADF;
return -1;
2011-02-27 02:59:23 -05:00
}