/* * Execute binary, replacing init(8) as PID 1. */ static void replace_init(char *path) { char *argv[SCRIPT_ARGV_SIZE]; argv[0] = path; argv[1] = NULL; execute_script(argv); }