1*22028508SToomas Soome /* $NetBSD: __main.c,v 1.4 1996/03/14 18:52:03 christos Exp $ */
2*22028508SToomas Soome
3*22028508SToomas Soome /*
4*22028508SToomas Soome * Copyright (c) 1993 Christopher G. Demetriou
5*22028508SToomas Soome * All rights reserved.
6*22028508SToomas Soome *
7*22028508SToomas Soome * Redistribution and use in source and binary forms, with or without
8*22028508SToomas Soome * modification, are permitted provided that the following conditions
9*22028508SToomas Soome * are met:
10*22028508SToomas Soome * 1. Redistributions of source code must retain the above copyright
11*22028508SToomas Soome * notice, this list of conditions and the following disclaimer.
12*22028508SToomas Soome * 2. Redistributions in binary form must reproduce the above copyright
13*22028508SToomas Soome * notice, this list of conditions and the following disclaimer in the
14*22028508SToomas Soome * documentation and/or other materials provided with the distribution.
15*22028508SToomas Soome * 3. All advertising materials mentioning features or use of this software
16*22028508SToomas Soome * must display the following acknowledgement:
17*22028508SToomas Soome * This product includes software developed by Christopher G. Demetriou.
18*22028508SToomas Soome * 4. The name of the author may not be used to endorse or promote products
19*22028508SToomas Soome * derived from this software without specific prior written permission
20*22028508SToomas Soome *
21*22028508SToomas Soome * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22*22028508SToomas Soome * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23*22028508SToomas Soome * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24*22028508SToomas Soome * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25*22028508SToomas Soome * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26*22028508SToomas Soome * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27*22028508SToomas Soome * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28*22028508SToomas Soome * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29*22028508SToomas Soome * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30*22028508SToomas Soome * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*22028508SToomas Soome */
32*22028508SToomas Soome
33*22028508SToomas Soome #include <sys/cdefs.h>
34*22028508SToomas Soome __FBSDID("$FreeBSD$");
35*22028508SToomas Soome
36*22028508SToomas Soome #include <sys/types.h>
37*22028508SToomas Soome
38*22028508SToomas Soome void __main(void);
39*22028508SToomas Soome
40*22028508SToomas Soome void
__main(void)41*22028508SToomas Soome __main(void)
42*22028508SToomas Soome {
43*22028508SToomas Soome }
44