summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/exec_lib.c
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2002-08-01 17:20:30 +0000
committerMystery Man <unknown@mandriva.org>2002-08-01 17:20:30 +0000
commit10e8a05be15a93ecb30d80420a7df79a41df0b6f (patch)
tree0fe3a8fe9665e857dcea7c8d35b539ab0295a6fa /mdk-stage1/dietlibc/lib/exec_lib.c
parent20bc98cdccfed607ee0c3050a3a3bd196c0a1d38 (diff)
downloaddrakx-backup-do-not-use-1_1_9_1mdk.tar
drakx-backup-do-not-use-1_1_9_1mdk.tar.gz
drakx-backup-do-not-use-1_1_9_1mdk.tar.bz2
drakx-backup-do-not-use-1_1_9_1mdk.tar.xz
drakx-backup-do-not-use-1_1_9_1mdk.zip
This commit was manufactured by cvs2svn to create tag 'V1_1_9_1mdk'.V1_1_9_1mdk
Diffstat (limited to 'mdk-stage1/dietlibc/lib/exec_lib.c')
-rw-r--r--mdk-stage1/dietlibc/lib/exec_lib.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/mdk-stage1/dietlibc/lib/exec_lib.c b/mdk-stage1/dietlibc/lib/exec_lib.c
deleted file mode 100644
index 3129224a0..000000000
--- a/mdk-stage1/dietlibc/lib/exec_lib.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <unistd.h>
-#include <paths.h>
-
-extern char **environ;
-
-int __exec_shell(const char *file, char *const argv[]) {
- int i;
-
- for (i = 0; argv[i]; i++);
-
- {
- char *shell_argv[i + 1];
- shell_argv[0] = _PATH_BSHELL;
- shell_argv[1] = (char *) file;
- for (; i > 1; i--)
- shell_argv[i] = argv[i - 1];
- return execve(_PATH_BSHELL, shell_argv, environ);
- }
-}
-