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