mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-08-26 13:25:01 +00:00
Update libc
This commit is contained in:
14
libc/src/std/sys/wait.c
Normal file
14
libc/src/std/sys/wait.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <sys/wait.h>
|
||||
|
||||
pid_t wait(int *wstatus)
|
||||
{
|
||||
return waitpid(-1, &wstatus, 0);
|
||||
}
|
||||
|
||||
pid_t waitpid(pid_t pid, int *wstatus, int options)
|
||||
{
|
||||
}
|
||||
|
||||
int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options)
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user