xref: /freebsd/lib/libc/gen/pmadvise.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * The contents of this file are in the public domain.
3  * Written by Garrett A. Wollman, 2000-10-07.
4  *
5  * $FreeBSD$
6  */
7 
8 #include <sys/mman.h>
9 
10 int
11 (posix_madvise)(void *address, size_t size, int how)
12 {
13 	return posix_madvise(address, size, how);
14 }
15