summaryrefslogtreecommitdiff
path: root/src/unistd/execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/execve.c')
-rw-r--r--src/unistd/execve.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/unistd/execve.c b/src/unistd/execve.c
deleted file mode 100644
index 97cdea40..00000000
--- a/src/unistd/execve.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#if 0
-
-#include <errno.h>
-#include <sys/types.h>
-#include <unistd.h>
-#include "_syscall.h"
-
-int execve(const char *path, char *const argv[], char *const envp[])
-{
- SYSCALL_NUMBER(scno, execve, -1);
- errno = -__syscall(scno, path, argv, envp);
- return -1;
-}
-/*
-POSIX(1)
-*/
-
-
-#endif