7 extern int execv ( const char *command, char * const argv[] );
12 * @v command Command name
13 * @v arg ... Argument list (starting with argv[0])
14 * @ret rc Command exit status
16 * This is a front end to execv().
18 #define execl( command, arg, ... ) ( { \
19 char * const argv[] = { (arg), ## __VA_ARGS__, NULL }; \
20 int rc = execv ( (command), argv ); \
24 #endif /* _UNISTD_H */