summaryrefslogtreecommitdiff
path: root/src/libexecline/el_spawn1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexecline/el_spawn1.c')
-rw-r--r--src/libexecline/el_spawn1.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/libexecline/el_spawn1.c b/src/libexecline/el_spawn1.c
deleted file mode 100644
index d9a7f87..0000000
--- a/src/libexecline/el_spawn1.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* ISC license. */
-
-#include <skalibs/cspawn.h>
-
-#include <execline/config.h>
-#include <execline/execline.h>
-
-pid_t el_spawn1 (char const *prog, char const *const *argv, char const *const *envp, int *fd, int w)
-{
- if (!argv[0])
- {
- static char const *const newargv[3] = { EXECLINE_BINPREFIX "exit", "0", 0 } ;
- return child_spawn1_pipe(newargv[0], newargv, 0, fd, w) ;
- }
- else return child_spawn1_pipe(prog, argv, envp, fd, w) ;
-}