freebsd-dev/lib/libc/gen/pmadvise.c
Garrett Wollman 08f825912f Add a couple of new library interfaces (will be activated when the
relavant header file changes are committed) for POSIX support.
2001-01-23 04:49:39 +00:00

15 lines
252 B
C

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