Blame src/fcntl/nt32/posix_fadvise.c

296178
#include "fcntl.h"
296178
#include "syscall_arch.h"
296178
296178
int posix_fadvise (int fd, off_t base, off_t len, int advice)
296178
{
296178
	/**
296178
	 *  __syscall is needed here due to the odd semantics
296178
	 *  of posix_fadvise(), which for us means calling
296178
	 *  __sys_fadvise() directly.
296178
	**/
296178
296178
	return 0; /* __sys_fadvise (fd, base, len, advice); */
296178
}
296178