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

LibC: Add EPFNOSUPPORT error number

Not used anywhere in Serenity currently, but required for OpenSSH.
This commit is contained in:
Luke 2020-09-09 08:16:18 +01:00 committed by Andreas Kling
parent ec136db592
commit 7334f21ef7
2 changed files with 3 additions and 1 deletions

View file

@ -363,6 +363,7 @@ const char* const sys_errlist[] = {
"No such thread",
"Protocol error",
"Not supported",
"Protocol family not supported",
"The highest errno +1 :^)",
};