ed087a62aa0d3972e12be48d7c1ee2d283999126
[unix-history] / usr / src / old / machine / machine.c
/*
* 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) %G%";
#endif not lint
#include <sys/param.h>
/*
* machine -- print machine type
*/
main()
{
puts(MACHINE);
exit(0);
}