new copyright notice
[unix-history] / usr / src / usr.bin / false / false.c
/*
* Copyright (c) 1988 The Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*/
#ifndef lint
char copyright[] =
"@(#) Copyright (c) 1988 The Regents of the University of California.\n\
All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static char sccsid[] = "@(#)false.c 5.2 (Berkeley) %G%";
#endif /* not lint */
main()
{
exit(1);
}