summaryrefslogtreecommitdiffstats
path: root/usr/klibc/execvp.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/klibc/execvp.c')
-rw-r--r--usr/klibc/execvp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/usr/klibc/execvp.c b/usr/klibc/execvp.c
new file mode 100644
index 0000000..7d8e2bc
--- /dev/null
+++ b/usr/klibc/execvp.c
@@ -0,0 +1,10 @@
+/*
+ * execvp.c
+ */
+
+#include <unistd.h>
+
+int execvp(const char *path, char *const *argv)
+{
+ return execvpe(path, argv, environ);
+}