aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libsandbox/wrapper-funcs/execvp.c')
-rw-r--r--libsandbox/wrapper-funcs/execvp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libsandbox/wrapper-funcs/execvp.c b/libsandbox/wrapper-funcs/execvp.c
new file mode 100644
index 0000000..8d1a7ae
--- /dev/null
+++ b/libsandbox/wrapper-funcs/execvp.c
@@ -0,0 +1,10 @@
+/*
+ * execvp() wrapper.
+ *
+ * Copyright 1999-2008 Gentoo Foundation
+ * Licensed under the GPL-2
+ */
+
+#define WRAPPER_ARGS_PROTO const char *path, char *const argv[]
+#define WRAPPER_ARGS path, argv
+#include "__wrapper_exec.c"