false.c revision 256281
1169691Skan/*
2169691Skan * Copyright (c) 1988, 1993
3169691Skan *	The Regents of the University of California.  All rights reserved.
4169691Skan *
5169691Skan * Redistribution and use in source and binary forms, with or without
6169691Skan * modification, are permitted provided that the following conditions
7169691Skan * are met:
8169691Skan * 1. Redistributions of source code must retain the above copyright
9169691Skan *    notice, this list of conditions and the following disclaimer.
10169691Skan * 2. Redistributions in binary form must reproduce the above copyright
11169691Skan *    notice, this list of conditions and the following disclaimer in the
12169691Skan *    documentation and/or other materials provided with the distribution.
13169691Skan * 4. Neither the name of the University nor the names of its contributors
14169691Skan *    may be used to endorse or promote products derived from this software
15169691Skan *    without specific prior written permission.
16169691Skan *
17169691Skan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18169691Skan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19169691Skan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20169691Skan * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21169691Skan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22169691Skan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23169691Skan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24169691Skan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25169691Skan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26169691Skan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27169691Skan * SUCH DAMAGE.
28169691Skan */
29169691Skan
30169691Skan#ifndef lint
31169691Skanstatic const char copyright[] =
32169691Skan"@(#) Copyright (c) 1988, 1993\n\
33169691Skan	The Regents of the University of California.  All rights reserved.\n";
34169691Skan#endif /* not lint */
35169691Skan
36169691Skan#ifndef lint
37169691Skanstatic const char sccsid[] = "@(#)false.c	8.1 (Berkeley) 6/6/93";
38169691Skan#endif /* not lint */
39169691Skan#include <sys/cdefs.h>
40169691Skan__FBSDID("$FreeBSD: stable/10/usr.bin/false/false.c 216370 2010-12-11 08:32:16Z joel $");
41169691Skan
42169691Skanint
43169691Skanmain(void)
44169691Skan{
45169691Skan	return 1;
46169691Skan}
47169691Skan