summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src/execve.c')
-rw-r--r--c/src/exec/posix/src/execve.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/c/src/exec/posix/src/execve.c b/c/src/exec/posix/src/execve.c
deleted file mode 100644
index e7c345b4fb..0000000000
--- a/c/src/exec/posix/src/execve.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * execve() - POSIX 1003.1b 3.1.2
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <errno.h>
-
-int execve(
- const char *path,
- char *const argv[],
- char *const envp[]
-)
-{
- errno = ENOSYS;
- return -1;
-}