keywords!
[unix-history] / usr / src / old / machine / machine.c
CommitLineData
4d5c2c30
SL
1/*
2 * Copyright (c) 1986 Regents of the University of California.
db649132
KB
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that this notice is preserved and that due credit is given
7 * to the University of California at Berkeley. The name of the University
8 * may not be used to endorse or promote products derived from this
9 * software without specific prior written permission. This software
10 * is provided ``as is'' without express or implied warranty.
4d5c2c30
SL
11 */
12
13#ifndef lint
14char copyright[] =
15"@(#) Copyright (c) 1986 Regents of the University of California.\n\
16 All rights reserved.\n";
db649132 17#endif /* not lint */
4d5c2c30
SL
18
19#ifndef lint
db649132
KB
20static char sccsid[] = "@(#)machine.c 5.3 (Berkeley) %G%";
21#endif /* not lint */
22
4d5c2c30 23
8a2e518b
KB
24#include <sys/param.h>
25
4d5c2c30
SL
26/*
27 * machine -- print machine type
28 */
29
8a2e518b 30main()
4d5c2c30 31{
8a2e518b 32 puts(MACHINE);
4d5c2c30
SL
33 exit(0);
34}