Update libc

This commit is contained in:
Alex
2023-05-03 06:40:31 +03:00
parent f01eed8dd2
commit cf3a5599a4
18 changed files with 530 additions and 50 deletions

14
libc/src/std/sys/wait.c Normal file
View 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)
{
}