musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/process/fexecve.c 10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/process/fexecve.c b/src/process/fexecve.c
new file mode 100644
index 00000000..3098645d
--- /dev/null
+++ b/src/process/fexecve.c
@@ -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);
+}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月20日 01:19:49 +0000

AltStyle によって変換されたページ (->オリジナル) /