/* * Copyright (c) 1986 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #ifndef lint char copyright[] = "@(#) Copyright (c) 1986 Regents of the University of California.\n\ All rights reserved.\n"; #endif not lint #ifndef lint static char sccsid[] = "@(#)machine.c 5.2 (Berkeley) 05/21/87"; #endif not lint #include /* * machine -- print machine type */ main() { puts(MACHINE); exit(0); }