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

#include <sys/mman.h>

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