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