summaryrefslogblamecommitdiff
path: root/src/unistd/ftruncate.c
blob: 54ff34bc3ebd7fa76273148eac9eee2880935717 (plain) (tree)
1
2
3
4
5
6
7

                    


                                   
                                                                  
 
#include <unistd.h>
#include "syscall.h"

int ftruncate(int fd, off_t length)
{
	return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length));
}