1 #ifndef EXECV_CONST_H 2 #define EXECV_CONST_H 3 4 /* Just like execv() and execvp(), except argv points to const strings. 5 Also if calling execv*() fails, these functions call i_fatal(). */ 6 void execv_const(const char *path, const char *const argv[]) ATTR_NORETURN; 7 void execvp_const(const char *file, const char *const argv[]) ATTR_NORETURN; 8 9 #endif 10