grep -e dumps core; fix from Craig Leres
[unix-history] / usr / src / usr.bin / true / true.c
CommitLineData
e0c50f26
KB
1/*
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
4 *
cb956e54 5 * %sccs.include.redist.c%
e0c50f26
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
cb956e54 15static char sccsid[] = "@(#)true.c 5.2 (Berkeley) %G%";
e0c50f26
KB
16#endif /* not lint */
17
18main()
19{
20 exit(0);
21}