From d229a8b84880dddc05267798795ea29c50af28bd Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Mon, 11 Sep 2023 21:23:56 +0000 Subject: Defork execline Signed-off-by: Laurent Bercot --- src/libexecline/el_spawn1.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/libexecline/el_spawn1.c (limited to 'src/libexecline/el_spawn1.c') 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 - -#include -#include - -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) ; -} -- cgit 1.4.1