1*19845Sdist /* 2*19845Sdist * Copyright (c) 1983 Regents of the University of California. 3*19845Sdist * All rights reserved. The Berkeley software License Agreement 4*19845Sdist * specifies the terms and conditions for redistribution. 5*19845Sdist */ 6*19845Sdist 714466Ssam #ifndef lint 8*19845Sdist char copyright[] = 9*19845Sdist "@(#) Copyright (c) 1983 Regents of the University of California.\n\ 10*19845Sdist All rights reserved.\n"; 11*19845Sdist #endif not lint 129114Ssam 13*19845Sdist #ifndef lint 14*19845Sdist static char sccsid[] = "@(#)pagesize.c 5.1 (Berkeley) 04/30/85"; 15*19845Sdist #endif not lint 16*19845Sdist 179114Ssam main() 189114Ssam { 199114Ssam 209114Ssam printf("%d\n", getpagesize()); 219114Ssam } 22