summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/pmadvise.c
blob: 60cef637bf166444625156204321cf5d7d36f153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * The contents of this file are in the public domain.
 * Written by Garrett A. Wollman, 2000-10-07.
 *
 */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");

#include <sys/mman.h>

int
posix_madvise(void *address, size_t size, int how)
{
	return madvise(address, size, how);
}
OpenPOWER on IntegriCloud