mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 02:09:24 +00:00
LibC: Add definition for EDQUOT
This is used by the libphysfs port.
This commit is contained in:
parent
8a01167c7d
commit
6afb6eb6a9
Notes:
sideshowbarker
2024-07-18 18:30:29 +09:00
Author: https://github.com/gunnarbeutner
Commit: 6afb6eb6a9
Pull-request: https://github.com/SerenityOS/serenity/pull/6958
2 changed files with 3 additions and 0 deletions
|
@ -152,6 +152,8 @@ enum ErrnoCode {
|
||||||
EPFNOSUPPORT,
|
EPFNOSUPPORT,
|
||||||
#define EPFNOSUPPORT EPFNOSUPPORT
|
#define EPFNOSUPPORT EPFNOSUPPORT
|
||||||
EDIRINTOSELF,
|
EDIRINTOSELF,
|
||||||
|
#define EDQUOT EDQUOT
|
||||||
|
EDQUOT,
|
||||||
#define EDIRINTOSELF EDIRINTOSELF
|
#define EDIRINTOSELF EDIRINTOSELF
|
||||||
EMAXERRNO,
|
EMAXERRNO,
|
||||||
#define EMAXERRNO EMAXERRNO
|
#define EMAXERRNO EMAXERRNO
|
||||||
|
|
|
@ -348,6 +348,7 @@ const char* const sys_errlist[] = {
|
||||||
"Not supported",
|
"Not supported",
|
||||||
"Protocol family not supported",
|
"Protocol family not supported",
|
||||||
"Cannot make directory a subdirectory of itself",
|
"Cannot make directory a subdirectory of itself",
|
||||||
|
"Quota exceeded",
|
||||||
"The highest errno +1 :^)",
|
"The highest errno +1 :^)",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue