1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:47:35 +00:00

LibC: sys_errlist should be const char* const

Patch from Anonymous.
This commit is contained in:
Andreas Kling 2019-10-17 09:18:01 +02:00
parent 06f084fedd
commit e51c1aa3d4
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
__BEGIN_DECLS
extern const char* sys_errlist[];
extern const char* const sys_errlist[];
extern int sys_nerr;
extern __thread int errno;