mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 13:30:57 +03:00
Added execv() and system().
This commit is contained in:
24
src/include/unistd.h
Normal file
24
src/include/unistd.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#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, ... ) ( { \
|
||||
char * const argv[] = { (arg), ## __VA_ARGS__, NULL }; \
|
||||
int rc = execv ( (command), argv ); \
|
||||
rc; \
|
||||
} )
|
||||
|
||||
#endif /* _UNISTD_H */
|
||||
Reference in New Issue
Block a user