summaryrefslogtreecommitdiff
path: root/lib/libc/fcntl/posix_fallocate.c
blob: 221f2d38b8483562e8be72e02f89fa96332fd14f (plain)
1
2
3
4
5
6
7
#include <fcntl.h>
#include <syscall.h>

int posix_fallocate(int fd, off_t offset, off_t len)
{
	return syscall(fallocate, fd, 0, offset, len);
}