1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
12 lines
201 B
C
12 lines
201 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#include "test_helpers.h"
|
|
|
|
int main(void) {
|
|
int getpagesize_result = getpagesize();
|
|
|
|
printf("Page size: %d\n", getpagesize_result);
|
|
}
|