summaryrefslogtreecommitdiffstats
path: root/src/include/unistd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/unistd.h')
-rw-r--r--src/include/unistd.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/unistd.h b/src/include/unistd.h
new file mode 100644
index 000000000..9dd51dcd7
--- /dev/null
+++ b/src/include/unistd.h
@@ -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 */