xref: /csrg-svn/usr.bin/pagesize/pagesize.c (revision 32740)
119845Sdist /*
219845Sdist  * Copyright (c) 1983 Regents of the University of California.
3*32740Sbostic  * All rights reserved.
4*32740Sbostic  *
5*32740Sbostic  * Redistribution and use in source and binary forms are permitted
6*32740Sbostic  * provided that this notice is preserved and that due credit is given
7*32740Sbostic  * to the University of California at Berkeley. The name of the University
8*32740Sbostic  * may not be used to endorse or promote products derived from this
9*32740Sbostic  * software without specific written prior permission. This software
10*32740Sbostic  * is provided ``as is'' without express or implied warranty.
1119845Sdist  */
1219845Sdist 
1314466Ssam #ifndef lint
1419845Sdist char copyright[] =
1519845Sdist "@(#) Copyright (c) 1983 Regents of the University of California.\n\
1619845Sdist  All rights reserved.\n";
17*32740Sbostic #endif /* not lint */
189114Ssam 
1919845Sdist #ifndef lint
20*32740Sbostic static char sccsid[] = "@(#)pagesize.c	5.2 (Berkeley) 12/02/87";
21*32740Sbostic #endif /* not lint */
2219845Sdist 
239114Ssam main()
249114Ssam {
259114Ssam 	printf("%d\n", getpagesize());
26*32740Sbostic 	exit(0);
279114Ssam }
28