mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 11:07:46 +00:00
LibC: Add a couple of missing errno codes
These are required to compile a port.
This commit is contained in:
parent
265764ff2f
commit
13dec3cdde
3 changed files with 17 additions and 0 deletions
|
@ -99,6 +99,8 @@ enum ErrnoCode {
|
|||
#define EDOM EDOM
|
||||
ECONNREFUSED,
|
||||
#define ECONNREFUSED ECONNREFUSED
|
||||
EHOSTDOWN,
|
||||
#define EHOSTDOWN EHOSTDOWN
|
||||
EADDRNOTAVAIL,
|
||||
#define EADDRNOTAVAIL EADDRNOTAVAIL
|
||||
EISCONN,
|
||||
|
@ -133,8 +135,14 @@ enum ErrnoCode {
|
|||
#define ENOPROTOOPT ENOPROTOOPT
|
||||
ENOTCONN,
|
||||
#define ENOTCONN ENOTCONN
|
||||
ESHUTDOWN,
|
||||
#define ESHUTDOWN ESHUTDOWN
|
||||
ETOOMANYREFS,
|
||||
#define ETOOMANYREFS ETOOMANYREFS
|
||||
EPROTONOSUPPORT,
|
||||
#define EPROTONOSUPPORT EPROTONOSUPPORT
|
||||
ESOCKTNOSUPPORT,
|
||||
#define ESOCKTNOSUPPORT ESOCKTNOSUPPORT
|
||||
EDEADLK,
|
||||
#define EDEADLK EDEADLK
|
||||
ETIMEDOUT,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue