david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/unistd.h
2006-12-20 03:14:59 +00:00

26 lines
558 B
C

#ifndef _UNISTD_H
#define _UNISTD_H
#include <stddef.h>
#include <stdarg.h>
extern unsigned int sleep ( unsigned int seconds );
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__ }; \
int rc = execv ( (command), argv ); \
rc; \
} )
#endif /* _UNISTD_H */