1 2 3 4 5 6 7
#ifndef SIMPLE_EXEC_H #define SIMPLE_EXEC_H int simple_execvp(const char *file, char *const args[]); int simple_execlp(const char *file, ...); #endif