fstests: add missing remove of the $seqres.full file for some tests
[xfstests-dev.git] / src / getpagesize.c
1 #include <stdio.h>
2 #include <unistd.h>
3
4 int main(int argc, char **argv)
5 {
6         printf("%u\n", getpagesize());
7         return 0;
8 }