aboutsummaryrefslogtreecommitdiffstats
path: root/src/doexec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/doexec.c')
-rw-r--r--src/doexec.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/doexec.c b/src/doexec.c
new file mode 100644
index 00000000..a488be13
--- /dev/null
+++ b/src/doexec.c
@@ -0,0 +1,6 @@
+#include <unistd.h>
+
+int main(int argc, char ** argv) {
+ execvp(argv[1], argv + 2);
+ return 1;
+}