getpagesize.c 86 B

1234567
  1. #include <unistd.h>
  2. #include <limits.h>
  3. int getpagesize(void)
  4. {
  5. return PAGE_SIZE;
  6. }