use standard headers to get declarations; strdup is now in libc
[unix-history] / usr / src / usr.bin / false / false.c
CommitLineData
3484f952
KB
1/*
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
4 *
f15db449 5 * %sccs.include.redist.c%
3484f952
KB
6 */
7
8#ifndef lint
9char copyright[] =
10"@(#) Copyright (c) 1988 The Regents of the University of California.\n\
11 All rights reserved.\n";
12#endif /* not lint */
13
14#ifndef lint
f15db449 15static char sccsid[] = "@(#)false.c 5.2 (Berkeley) %G%";
3484f952
KB
16#endif /* not lint */
17
18main()
19{
20 exit(1);
21}