userspace/libc: implement sigaction(), sigemptyset(), signal() & strcspn()

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-01-28 12:25:05 +02:00
parent 1b55332027
commit 833d8d497a
4 changed files with 78 additions and 8 deletions

View File

@ -41,7 +41,7 @@ extern "C"
int strcoll(const char *, const char *);
int strcoll_l(const char *, const char *, locale_t);
char *strcpy(char *restrict, const char *restrict);
size_t strcspn(const char *, const char *);
size_t strcspn(const char *s1, const char *s2);
char *strdup(const char *);
char *strerror(int);
char *strerror_l(int, locale_t);