I intend to add more Linux workarounds that depend on using these pathnames, and some of them will be in "syscall" functions that, from an anti-bloat standpoint, should not depend on the whole snprintf framework.
14 lines
291 B
C
14 lines
291 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
void __procfdname(char *, unsigned);
|
|
|
|
int fexecve(int fd, char *const argv[], char *const envp[])
|
|
{
|
|
char buf[15 + 3*sizeof(int)];
|
|
__procfdname(buf, fd);
|
|
execve(buf, argv, envp);
|
|
if (errno == ENOENT) errno = EBADF;
|
|
return -1;
|
|
}
|