119845Sdist /* 2*62158Sbostic * Copyright (c) 1983, 1993 3*62158Sbostic * The Regents of the University of California. All rights reserved. 432740Sbostic * 542755Sbostic * %sccs.include.redist.c% 619845Sdist */ 719845Sdist 814466Ssam #ifndef lint 9*62158Sbostic static char copyright[] = 10*62158Sbostic "@(#) Copyright (c) 1983, 1993\n\ 11*62158Sbostic The Regents of the University of California. All rights reserved.\n"; 1232740Sbostic #endif /* not lint */ 139114Ssam 1419845Sdist #ifndef lint 15*62158Sbostic static char sccsid[] = "@(#)pagesize.c 8.1 (Berkeley) 06/06/93"; 1632740Sbostic #endif /* not lint */ 1719845Sdist main()189114Ssammain() 199114Ssam { 209114Ssam printf("%d\n", getpagesize()); 2132740Sbostic exit(0); 229114Ssam } 23