summaryrefslogtreecommitdiff
path: root/src/getpagesize.c
blob: 2830fa24545ba751e38183da7aebf98f24eee213 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <unistd.h>

int main(int argc, char **argv)
{
	printf("%u\n", getpagesize());
	return 0;
}