mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
LibC: Add EPFNOSUPPORT error number
Not used anywhere in Serenity currently, but required for OpenSSH.
This commit is contained in:
parent
ec136db592
commit
7334f21ef7
Notes:
sideshowbarker
2024-07-19 02:11:42 +09:00
Author: https://github.com/Lubrsi
Commit: 7334f21ef7
Pull-request: https://github.com/SerenityOS/serenity/pull/3454
Reviewed-by: https://github.com/bugaevc
2 changed files with 3 additions and 1 deletions
|
@ -98,4 +98,5 @@
|
|||
#define ENOTHREAD 70
|
||||
#define EPROTO 71
|
||||
#define ENOTSUP 72
|
||||
#define EMAXERRNO 73
|
||||
#define EPFNOSUPPORT 73
|
||||
#define EMAXERRNO 74
|
||||
|
|
|
@ -363,6 +363,7 @@ const char* const sys_errlist[] = {
|
|||
"No such thread",
|
||||
"Protocol error",
|
||||
"Not supported",
|
||||
"Protocol family not supported",
|
||||
"The highest errno +1 :^)",
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue