[BACK]Return to getpagesize.c CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfstests / src

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
Branch: MAIN
CVS Tags: XFS-1_3_0pre1, HEAD

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;
}