xref: /csrg-svn/old/machine/machine.c (revision 33090)
1 /*
2  * Copyright (c) 1986 Regents of the University of California.
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.
11  */
12 
13 #ifndef lint
14 char copyright[] =
15 "@(#) Copyright (c) 1986 Regents of the University of California.\n\
16  All rights reserved.\n";
17 #endif /* not lint */
18 
19 #ifndef lint
20 static char sccsid[] = "@(#)machine.c	5.3 (Berkeley) 12/22/87";
21 #endif /* not lint */
22 
23 
24 #include <sys/param.h>
25 
26 /*
27  * machine -- print machine type
28  */
29 
30 main()
31 {
32 	puts(MACHINE);
33 	exit(0);
34 }
35