LibC: Add definition for EDQUOT

This is used by the libphysfs port.
This commit is contained in:
Gunnar Beutner 2021-05-08 04:44:03 +02:00 committed by Andreas Kling
parent 8a01167c7d
commit 6afb6eb6a9
Notes: sideshowbarker 2024-07-18 18:30:29 +09:00
2 changed files with 3 additions and 0 deletions

View file

@ -152,6 +152,8 @@ enum ErrnoCode {
EPFNOSUPPORT,
#define EPFNOSUPPORT EPFNOSUPPORT
EDIRINTOSELF,
#define EDQUOT EDQUOT
EDQUOT,
#define EDIRINTOSELF EDIRINTOSELF
EMAXERRNO,
#define EMAXERRNO EMAXERRNO

View file

@ -348,6 +348,7 @@ const char* const sys_errlist[] = {
"Not supported",
"Protocol family not supported",
"Cannot make directory a subdirectory of itself",
"Quota exceeded",
"The highest errno +1 :^)",
};