make mktemp match the historic behavior, and update functions that use it
[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 }