diff options
Diffstat (limited to 'lib/libc/gen/pmadvise.c')
-rw-r--r-- | lib/libc/gen/pmadvise.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/libc/gen/pmadvise.c b/lib/libc/gen/pmadvise.c deleted file mode 100644 index 60cef63..0000000 --- a/lib/libc/gen/pmadvise.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - * 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 madvise(address, size, how); -} |