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