posix_fadvise.c 239 字节
Newer Older
1 2
#include <fcntl.h>
#include "syscall.h"
3
#include "libc.h"
4 5 6

int posix_fadvise(int fd, off_t base, off_t len, int advice)
{
7 8
	return -(__syscall)(SYS_fadvise, fd, __SYSCALL_LL_O(base),
		__SYSCALL_LL_E(len), advice);
9
}
10 11

LFS64(posix_fadvise);