Blame src/fcntl/nt32/posix_fadvise.c

716654
/**************************************************************************/
716654
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
716654
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
000ff7
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
716654
/**************************************************************************/
716654
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