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