blob: 54ff34bc3ebd7fa76273148eac9eee2880935717 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
int ftruncate(int fd, off_t length)
{
return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length));
}