Blame src/fcntl/nt64/posix_fadvise.c

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