1101497Smike/*	$NetBSD: __main.c,v 1.4 1996/03/14 18:52:03 christos Exp $	*/
2101497Smike
3101497Smike/*
4101497Smike * Copyright (c) 1993 Christopher G. Demetriou
5101497Smike * All rights reserved.
6101497Smike *
7101497Smike * Redistribution and use in source and binary forms, with or without
8101497Smike * modification, are permitted provided that the following conditions
9101497Smike * are met:
10101497Smike * 1. Redistributions of source code must retain the above copyright
11101497Smike *    notice, this list of conditions and the following disclaimer.
12101497Smike * 2. Redistributions in binary form must reproduce the above copyright
13101497Smike *    notice, this list of conditions and the following disclaimer in the
14101497Smike *    documentation and/or other materials provided with the distribution.
15101497Smike * 3. All advertising materials mentioning features or use of this software
16101497Smike *    must display the following acknowledgement:
17101497Smike *      This product includes software developed by Christopher G. Demetriou.
18101497Smike * 4. The name of the author may not be used to endorse or promote products
19101497Smike *    derived from this software without specific prior written permission
20101497Smike *
21101497Smike * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22101497Smike * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23101497Smike * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24101497Smike * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25101497Smike * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26101497Smike * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27101497Smike * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28101497Smike * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29101497Smike * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30101497Smike * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31101497Smike */
32108634Stjr
33108634Stjr#include <sys/cdefs.h>
34101497Smike__FBSDID("$FreeBSD$");
35101497Smike
36101497Smike#include <sys/types.h>
37108634Stjr
38101497Smikevoid __main(void);
39108634Stjr
40101497Smikevoid
41101497Smike__main(void)
42{
43}
44