date and time created 85/09/06 17:52:36 by zliu
[unix-history] / usr / src / usr.bin / pagesize / pagesize.c
CommitLineData
bcf1365c
DF
1/*
2 * Copyright (c) 1983 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
7#ifndef lint
8char copyright[] =
9"@(#) Copyright (c) 1983 Regents of the University of California.\n\
10 All rights reserved.\n";
11#endif not lint
12
205a2d85 13#ifndef lint
bcf1365c
DF
14static char sccsid[] = "@(#)pagesize.c 5.1 (Berkeley) %G%";
15#endif not lint
2284db11
SL
16
17main()
18{
19
20 printf("%d\n", getpagesize());
21}