mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 21:22:11 +00:00
implement fexecve
This commit is contained in:
10
src/process/fexecve.c
Normal file
10
src/process/fexecve.c
Normal file
@ -0,0 +1,10 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user