mirror of
https://github.com/RGBCube/serenity
synced 2025-07-08 06:07:35 +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
2 changed files with 3 additions and 1 deletions
|
@ -98,4 +98,5 @@
|
||||||
#define ENOTHREAD 70
|
#define ENOTHREAD 70
|
||||||
#define EPROTO 71
|
#define EPROTO 71
|
||||||
#define ENOTSUP 72
|
#define ENOTSUP 72
|
||||||
#define EMAXERRNO 73
|
#define EPFNOSUPPORT 73
|
||||||
|
#define EMAXERRNO 74
|
||||||
|
|
|
@ -363,6 +363,7 @@ const char* const sys_errlist[] = {
|
||||||
"No such thread",
|
"No such thread",
|
||||||
"Protocol error",
|
"Protocol error",
|
||||||
"Not supported",
|
"Not supported",
|
||||||
|
"Protocol family not supported",
|
||||||
"The highest errno +1 :^)",
|
"The highest errno +1 :^)",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue