initial check-in, version 0.5.0
[musl] / src / mman / posix_madvise.c
1 #include <sys/mman.h>
2
3 int posix_madvise(void *addr, size_t len, int advice)
4 {
5         return 0;
6 }