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