1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

LibC: Expose sig_sysname array

This commit is contained in:
Jean-Baptiste Boric 2021-08-15 18:15:39 +02:00 committed by Andreas Kling
parent 77bec6b01d
commit 6165811081
2 changed files with 5 additions and 4 deletions

View file

@ -31,5 +31,6 @@ int getsignalbyname(const char*);
const char* getsignalname(int);
extern const char* sys_siglist[NSIG];
extern const char* sys_signame[NSIG];
__END_DECLS