/* * The contents of this file are in the public domain. * Written by Garrett A. Wollman, 2000-10-07. * */ #include __FBSDID("$FreeBSD: src/lib/libc/gen/pmadvise.c,v 1.3.34.1 2010/02/10 00:26:20 kensmith Exp $"); #include int posix_madvise(void *address, size_t size, int how) { return madvise(address, size, how); }