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