blob: 4024d64cd7f20ef9e9962fc72e2bf69607071b28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* The contents of this file are in the public domain.
* Written by Garrett A. Wollman, 2000-10-07.
*
*/
#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);
}
|