mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:17:42 +00:00
Various stubs while trying to get an old coreutils to build.
This commit is contained in:
parent
e440c3fa87
commit
303577df16
20 changed files with 132 additions and 23 deletions
|
@ -274,4 +274,24 @@ int mknod(const char* pathname, mode_t, dev_t)
|
|||
assert(false);
|
||||
}
|
||||
|
||||
long fpathconf(int fd, int name)
|
||||
{
|
||||
(void) fd;
|
||||
(void) name;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
long pathconf(const char* path, int name)
|
||||
{
|
||||
(void) path;
|
||||
(void) name;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void _exit(int status)
|
||||
{
|
||||
Syscall::invoke(Syscall::SC_exit, (dword)status);
|
||||
assert(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue