fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / legacy / getpagesize.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "libc.h"
4
5 int getpagesize(void)
6 {
7         return PAGE_SIZE;
8 }