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

int posix_fadvise(int fd, off_t offset, off_t len, int advice)
{
	return syscall(fadvise64, fd, offset, len, advice);
}