blob: db5da84470897aa58148140b1e0e46620ba53eba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
int ftruncate(int fd, off_t length)
{
return syscall3(__NR_ftruncate, fd, SYSCALL_LL(length));
}
LFS64(ftruncate);
|