update mips cancellation-point syscall asm with 7-arg and r25 fixes
[oweals/musl.git] / src / legacy / getpagesize.c
1 #include <unistd.h>
2 #include <limits.h>
3
4 int getpagesize(void)
5 {
6         return PAGE_SIZE;
7 }