xref: /csrg-svn/usr.bin/pagesize/pagesize.c (revision 42755)
119845Sdist /*
219845Sdist  * Copyright (c) 1983 Regents of the University of California.
332740Sbostic  * All rights reserved.
432740Sbostic  *
5*42755Sbostic  * %sccs.include.redist.c%
619845Sdist  */
719845Sdist 
814466Ssam #ifndef lint
919845Sdist char copyright[] =
1019845Sdist "@(#) Copyright (c) 1983 Regents of the University of California.\n\
1119845Sdist  All rights reserved.\n";
1232740Sbostic #endif /* not lint */
139114Ssam 
1419845Sdist #ifndef lint
15*42755Sbostic static char sccsid[] = "@(#)pagesize.c	5.4 (Berkeley) 06/01/90";
1632740Sbostic #endif /* not lint */
1719845Sdist 
189114Ssam main()
199114Ssam {
209114Ssam 	printf("%d\n", getpagesize());
2132740Sbostic 	exit(0);
229114Ssam }
23