pmadvise.c revision 71414
1266423Sjfv/*
2266423Sjfv * The contents of this file are in the public domain.
3349163Serj * Written by Garrett A. Wollman, 2000-10-07.
4266423Sjfv *
5349163Serj * $FreeBSD: head/lib/libc/gen/pmadvise.c 71414 2001-01-23 04:49:39Z wollman $
6266423Sjfv */
7266423Sjfv
8266423Sjfv#include <sys/mman.h>
9266423Sjfv
10266423Sjfvint
11266423Sjfv(posix_madvise)(void *address, size_t size, int how)
12266423Sjfv{
13266423Sjfv	return posix_madvise(address, size, how);
14266423Sjfv}
15266423Sjfv