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