|
|
| File: [Development] / xfs-cmds / xfstests / src / getpagesize.c (download)
Revision 1.1, Wed Apr 3 03:39:30 2002 UTC (15 years, 6 months ago) by nathans
add getpagesize - dinky little program which, uh, calls getpagesize(2). |
#include <stdio.h>
#include <unistd.h>
int main(int argc, char **argv)
{
printf("%u\n", getpagesize());
return 0;
}