1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:47:44 +00:00

LibC: Move getsignalbyname() helper from Userland/kill into LibC

This commit is contained in:
Andreas Kling 2020-10-29 11:49:24 +01:00
parent a6b2598fba
commit ad0295d033
3 changed files with 51 additions and 49 deletions

View file

@ -75,6 +75,7 @@ int sigprocmask(int how, const sigset_t* set, sigset_t* old_set);
int sigpending(sigset_t*);
int sigsuspend(const sigset_t*);
int raise(int sig);
int getsignalbyname(const char*);
extern const char* sys_siglist[NSIG];