xref: /csrg-svn/old/machine/machine.c (revision 33090)
129669Ssam /*
229669Ssam  * Copyright (c) 1986 Regents of the University of California.
3*33090Sbostic  * All rights reserved.
4*33090Sbostic  *
5*33090Sbostic  * Redistribution and use in source and binary forms are permitted
6*33090Sbostic  * provided that this notice is preserved and that due credit is given
7*33090Sbostic  * to the University of California at Berkeley. The name of the University
8*33090Sbostic  * may not be used to endorse or promote products derived from this
9*33090Sbostic  * software without specific prior written permission. This software
10*33090Sbostic  * is provided ``as is'' without express or implied warranty.
1129669Ssam  */
1229669Ssam 
1329669Ssam #ifndef lint
1429669Ssam char copyright[] =
1529669Ssam "@(#) Copyright (c) 1986 Regents of the University of California.\n\
1629669Ssam  All rights reserved.\n";
17*33090Sbostic #endif /* not lint */
1829669Ssam 
1929669Ssam #ifndef lint
20*33090Sbostic static char sccsid[] = "@(#)machine.c	5.3 (Berkeley) 12/22/87";
21*33090Sbostic #endif /* not lint */
2229669Ssam 
23*33090Sbostic 
2431166Sbostic #include <sys/param.h>
2531166Sbostic 
2629669Ssam /*
2729669Ssam  * machine -- print machine type
2829669Ssam  */
2929669Ssam 
3031166Sbostic main()
3129669Ssam {
3231166Sbostic 	puts(MACHINE);
3329669Ssam 	exit(0);
3429669Ssam }
35