userspace/libc: implement std more functions

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-01-27 23:30:07 +02:00
parent f5a813380b
commit 2f71bccef2
15 changed files with 597 additions and 55 deletions

View File

@ -54,9 +54,9 @@ extern "C"
typedef unsigned int id_t;
typedef int pid_t;
pid_t wait(int *);
int waitid(idtype_t, id_t, siginfo_t *, int);
pid_t waitpid(pid_t, int *, int);
pid_t wait(int *stat_loc);
int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options);
pid_t waitpid(pid_t pid, int *stat_loc, int options);
#ifdef __cplusplus
}