mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
LibC: Added _PC_VDISABLE option to fpathconf()
This was needed for vttest
This commit is contained in:
parent
194f85431f
commit
fd15c7e8db
2 changed files with 5 additions and 1 deletions
|
@ -412,6 +412,8 @@ long fpathconf(int fd, int name)
|
|||
switch (name) {
|
||||
case _PC_PATH_MAX:
|
||||
return PATH_MAX;
|
||||
case _PC_VDISABLE:
|
||||
return _POSIX_VDISABLE;
|
||||
}
|
||||
|
||||
ASSERT_NOT_REACHED();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue