.
[glibc-ports.git] / sysdeps / unix / sysv / aix / posix_madvise.c
blob7ab4bed8e023267520e22ccf896f75f5abd42adb
1 #include <errno.h>
2 #include <sys/mman.h>
4 int
5 posix_madvise (void *addr, size_t len, int advise)
7 return madvise (addr, len, advise) ? errno : 0;