summaryrefslogtreecommitdiff
path: root/src/process
diff options
context:
space:
mode:
Diffstat (limited to 'src/process')
-rw-r--r--src/process/fexecve.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/process/fexecve.c b/src/process/fexecve.c
index 8be3f760..554c1981 100644
--- a/src/process/fexecve.c
+++ b/src/process/fexecve.c
@@ -4,8 +4,6 @@
#include <fcntl.h>
#include "syscall.h"
-void __procfdname(char *, unsigned);
-
int fexecve(int fd, char *const argv[], char *const envp[])
{
int r = __syscall(SYS_execveat, fd, "", argv, envp, AT_EMPTY_PATH);