summaryrefslogtreecommitdiffstats
path: root/src/lib/execv-const.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/execv-const.h')
-rw-r--r--src/lib/execv-const.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/execv-const.h b/src/lib/execv-const.h
new file mode 100644
index 0000000..f112cec
--- /dev/null
+++ b/src/lib/execv-const.h
@@ -0,0 +1,9 @@
+#ifndef EXECV_CONST_H
+#define EXECV_CONST_H
+
+/* Just like execv() and execvp(), except argv points to const strings.
+ Also if calling execv*() fails, these functions call i_fatal(). */
+void execv_const(const char *path, const char *const argv[]) ATTR_NORETURN;
+void execvp_const(const char *file, const char *const argv[]) ATTR_NORETURN;
+
+#endif