aboutsummaryrefslogtreecommitdiff
path: root/src/legacy/getpagesize.c
blob: 60006ae5abc508e864ea1e2b0cabf63c02b04597 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define _GNU_SOURCE
#include <unistd.h>
#include "libc.h"

int getpagesize(void)
{
	return PAGE_SIZE;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif