74179667f4325e7d7f5b49bc040741c6edc2dad2Timo Sirainen/* Just like execv() and execvp(), except argv points to const strings.
74179667f4325e7d7f5b49bc040741c6edc2dad2Timo Sirainen Also if calling execv*() fails, these functions call i_fatal(). */
74179667f4325e7d7f5b49bc040741c6edc2dad2Timo Sirainenvoid execv_const(const char *path, const char *const argv[]) ATTR_NORETURN;
74179667f4325e7d7f5b49bc040741c6edc2dad2Timo Sirainenvoid execvp_const(const char *file, const char *const argv[]) ATTR_NORETURN;