summaryrefslogtreecommitdiff
path: root/userland/libc/unistd/ftruncate.c
blob: cf3594421048aac6f82c58352cc3f3125ece6e85 (plain)
1
2
3
4
5
6
#include <syscall.h>
#include <unistd.h>

int ftruncate(int fildes, size_t length) {
  RC_ERRNO(syscall(SYS_FTRUNCATE, fildes, length, 0, 0, 0));
}