freebsd-dev/lib/libc/gen/pmadvise.c

17 lines
286 B
C
Raw Normal View History

/*
* The contents of this file are in the public domain.
* Written by Garrett A. Wollman, 2000-10-07.
*
*/
2002-02-01 00:57:29 +00:00
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/mman.h>
int
(posix_madvise)(void *address, size_t size, int how)
{
return posix_madvise(address, size, how);
}