1 2 3 4 5 6
#include <fs/vfs.h> #include <syscalls.h> int syscall_ftruncate(int fd, size_t length) { return vfs_ftruncate(fd, length); }