xref: /csrg-svn/old/machine/machine.c (revision 42740)
129669Ssam /*
229669Ssam  * Copyright (c) 1986 Regents of the University of California.
333090Sbostic  * All rights reserved.
433090Sbostic  *
5*42740Sbostic  * %sccs.include.redist.c%
629669Ssam  */
729669Ssam 
829669Ssam #ifndef lint
929669Ssam char copyright[] =
1029669Ssam "@(#) Copyright (c) 1986 Regents of the University of California.\n\
1129669Ssam  All rights reserved.\n";
1233090Sbostic #endif /* not lint */
1329669Ssam 
1429669Ssam #ifndef lint
15*42740Sbostic static char sccsid[] = "@(#)machine.c	5.5 (Berkeley) 06/01/90";
1633090Sbostic #endif /* not lint */
1729669Ssam 
1831166Sbostic #include <sys/param.h>
1931166Sbostic 
main()2031166Sbostic main()
2129669Ssam {
2231166Sbostic 	puts(MACHINE);
2329669Ssam 	exit(0);
2429669Ssam }
25