KNF, ANSI C
[unix-history] / usr / src / usr.bin / pagesize / pagesize.c
CommitLineData
bcf1365c 1/*
5d6e7702
KB
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
cc6c9677 4 *
87198c0c 5 * %sccs.include.redist.c%
bcf1365c
DF
6 */
7
8#ifndef lint
5d6e7702
KB
9static char copyright[] =
10"@(#) Copyright (c) 1983, 1993\n\
11 The Regents of the University of California. All rights reserved.\n";
cc6c9677 12#endif /* not lint */
bcf1365c 13
205a2d85 14#ifndef lint
5d6e7702 15static char sccsid[] = "@(#)pagesize.c 8.1 (Berkeley) %G%";
cc6c9677 16#endif /* not lint */
2284db11
SL
17
18main()
19{
2284db11 20 printf("%d\n", getpagesize());
cc6c9677 21 exit(0);
2284db11 22}