false.c revision 99112
118579Sfenner/*
218579Sfenner * Copyright (c) 1988, 1993
318579Sfenner *	The Regents of the University of California.  All rights reserved.
418579Sfenner *
518579Sfenner * Redistribution and use in source and binary forms, with or without
618579Sfenner * modification, are permitted provided that the following conditions
7100784Sfenner * are met:
818579Sfenner * 1. Redistributions of source code must retain the above copyright
918579Sfenner *    notice, this list of conditions and the following disclaimer.
1018579Sfenner * 2. Redistributions in binary form must reproduce the above copyright
1118579Sfenner *    notice, this list of conditions and the following disclaimer in the
12100784Sfenner *    documentation and/or other materials provided with the distribution.
13100784Sfenner * 3. All advertising materials mentioning features or use of this software
14100784Sfenner *    must display the following acknowledgement:
15100784Sfenner *	This product includes software developed by the University of
16100784Sfenner *	California, Berkeley and its contributors.
17100784Sfenner * 4. Neither the name of the University nor the names of its contributors
18100784Sfenner *    may be used to endorse or promote products derived from this software
1918579Sfenner *    without specific prior written permission.
2018579Sfenner *
2118579Sfenner * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2218579Sfenner * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23100784Sfenner * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24100784Sfenner * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25100784Sfenner * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26100784Sfenner * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27100784Sfenner * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28100784Sfenner * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2918579Sfenner * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3018579Sfenner * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3118579Sfenner * SUCH DAMAGE.
3218579Sfenner */
3318579Sfenner
3418579Sfenner#ifndef lint
3518579Sfennerstatic const char copyright[] =
36100784Sfenner"@(#) Copyright (c) 1988, 1993\n\
37100784Sfenner	The Regents of the University of California.  All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41static const char sccsid[] = "@(#)false.c	8.1 (Berkeley) 6/6/93";
42#endif /* not lint */
43#include <sys/cdefs.h>
44__FBSDID("$FreeBSD: head/usr.bin/false/false.c 99112 2002-06-30 05:25:07Z obrien $");
45
46int
47main(void)
48{
49	return 1;
50}
51