git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Framework for exporting system header to user space (#59)
[lunaix-os.git]
/
lunaix-os
/
usr
/
libc
/
includes
/
sys
/
wait.h
diff --git a/lunaix-os/usr/libc/includes/sys/wait.h
b/lunaix-os/usr/libc/includes/sys/wait.h
new file mode 100644
(file)
index 0000000..
23f3447
--- /dev/null
+++ b/
lunaix-os/usr/libc/includes/sys/wait.h
@@ -0,0
+1,13
@@
+#ifndef __LUNAIX_WAIT_H
+#define __LUNAIX_WAIT_H
+
+#include <lunaix/wait.h>
+#include <sys/types.h>
+
+pid_t
+wait(int* status);
+
+pid_t
+waitpid(pid_t pid, int* status, int flags);
+
+#endif /* __LUNAIX_WAIT_H */