2006-12-08 01:23:11 +00:00
|
|
|
#ifndef _UNISTD_H
|
|
|
|
#define _UNISTD_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
extern int execv ( const char *command, char * const argv[] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute command
|
|
|
|
*
|
|
|
|
* @v command Command name
|
|
|
|
* @v arg ... Argument list (starting with argv[0])
|
|
|
|
* @ret rc Command exit status
|
|
|
|
*
|
|
|
|
* This is a front end to execv().
|
|
|
|
*/
|
|
|
|
#define execl( command, arg, ... ) ( { \
|
2006-12-08 09:15:12 +00:00
|
|
|
char * const argv[] = { (arg), ## __VA_ARGS__ }; \
|
2006-12-08 01:23:11 +00:00
|
|
|
int rc = execv ( (command), argv ); \
|
|
|
|
rc; \
|
|
|
|
} )
|
|
|
|
|
|
|
|
#endif /* _UNISTD_H */
|