129669Ssam /* 229669Ssam * Copyright (c) 1986 Regents of the University of California. 329669Ssam * All rights reserved. The Berkeley software License Agreement 429669Ssam * specifies the terms and conditions for redistribution. 529669Ssam */ 629669Ssam 729669Ssam #ifndef lint 829669Ssam char copyright[] = 929669Ssam "@(#) Copyright (c) 1986 Regents of the University of California.\n\ 1029669Ssam All rights reserved.\n"; 1129669Ssam #endif not lint 1229669Ssam 1329669Ssam #ifndef lint 14*31166Sbostic static char sccsid[] = "@(#)machine.c 5.2 (Berkeley) 05/21/87"; 1529669Ssam #endif not lint 1629669Ssam 17*31166Sbostic #include <sys/param.h> 18*31166Sbostic 1929669Ssam /* 2029669Ssam * machine -- print machine type 2129669Ssam */ 2229669Ssam 23*31166Sbostic main() 2429669Ssam { 25*31166Sbostic puts(MACHINE); 2629669Ssam exit(0); 2729669Ssam } 28