mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:27:35 +00:00
LibC: Add ftruncate() stub.
This commit is contained in:
parent
eabc097dd4
commit
31871557e4
2 changed files with 6 additions and 0 deletions
|
@ -416,4 +416,9 @@ int create_thread(int(*entry)(void*), void* argument)
|
|||
__RETURN_WITH_ERRNO(rc, rc, -1);
|
||||
}
|
||||
|
||||
int ftruncate(int fd, off_t length)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue