20 #ifndef DEBIAN_INSTALLER__EXEC_H
21 #define DEBIAN_INSTALLER__EXEC_H
23 #include <debian-installer/types.h>
25 #include <sys/types.h>
78 static inline int di_exec (
const char *path,
const char *
const argv[])
80 return di_exec_full (path, argv, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
110 static inline int di_exec_env (
const char *path,
const char *
const argv[],
const char *
const envp[])
112 return di_exec_env_full (path, argv, envp, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
140 static inline int di_exec_path (
const char *file,
const char *
const argv[])
196 inline static int di_execlog (
const char *
const cmd) __attribute__ ((deprecated));