mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 09:18:55 +00:00
LibC: Add definition for ENOTRECOVERABLE
This is used by the LLVM port.
This commit is contained in:
parent
b1f6bfca7f
commit
4c0d868bb6
Notes:
sideshowbarker
2024-07-18 00:35:07 +09:00
Author: https://github.com/BertalanD
Commit: 4c0d868bb6
Pull-request: https://github.com/SerenityOS/serenity/pull/10996
Reviewed-by: https://github.com/timschumi ✅
2 changed files with 3 additions and 0 deletions
|
@ -155,6 +155,8 @@ enum ErrnoCode {
|
||||||
#define EDQUOT EDQUOT
|
#define EDQUOT EDQUOT
|
||||||
EDQUOT,
|
EDQUOT,
|
||||||
#define EDIRINTOSELF EDIRINTOSELF
|
#define EDIRINTOSELF EDIRINTOSELF
|
||||||
|
ENOTRECOVERABLE,
|
||||||
|
#define ENOTRECOVERABLE ENOTRECOVERABLE
|
||||||
EMAXERRNO,
|
EMAXERRNO,
|
||||||
#define EMAXERRNO EMAXERRNO
|
#define EMAXERRNO EMAXERRNO
|
||||||
};
|
};
|
||||||
|
|
|
@ -339,6 +339,7 @@ const char* const sys_errlist[] = {
|
||||||
"Protocol family not supported",
|
"Protocol family not supported",
|
||||||
"Cannot make directory a subdirectory of itself",
|
"Cannot make directory a subdirectory of itself",
|
||||||
"Quota exceeded",
|
"Quota exceeded",
|
||||||
|
"State not recoverable",
|
||||||
"The highest errno +1 :^)",
|
"The highest errno +1 :^)",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue