138451Smsmith/*	$NetBSD: __main.c,v 1.4 1996/03/14 18:52:03 christos Exp $	*/
238451Smsmith
338451Smsmith/*
438451Smsmith * Copyright (c) 1993 Christopher G. Demetriou
538451Smsmith * All rights reserved.
638451Smsmith *
738451Smsmith * Redistribution and use in source and binary forms, with or without
838451Smsmith * modification, are permitted provided that the following conditions
938451Smsmith * are met:
1038451Smsmith * 1. Redistributions of source code must retain the above copyright
1138451Smsmith *    notice, this list of conditions and the following disclaimer.
1238451Smsmith * 2. Redistributions in binary form must reproduce the above copyright
1338451Smsmith *    notice, this list of conditions and the following disclaimer in the
1438451Smsmith *    documentation and/or other materials provided with the distribution.
1538451Smsmith * 3. All advertising materials mentioning features or use of this software
1638451Smsmith *    must display the following acknowledgement:
1738451Smsmith *      This product includes software developed by Christopher G. Demetriou.
1838451Smsmith * 4. The name of the author may not be used to endorse or promote products
1938451Smsmith *    derived from this software without specific prior written permission
2038451Smsmith *
2138451Smsmith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2238451Smsmith * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2338451Smsmith * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2438451Smsmith * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2538451Smsmith * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2638451Smsmith * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2738451Smsmith * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2838451Smsmith * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2938451Smsmith * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3038451Smsmith * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3138451Smsmith */
3238451Smsmith
3384221Sdillon#include <sys/cdefs.h>
3484221Sdillon__FBSDID("$FreeBSD$");
3584221Sdillon
3638451Smsmith#include <sys/types.h>
3738451Smsmith
3838451Smsmithvoid __main(void);
3938451Smsmith
4038451Smsmithvoid
41221358Srodrigc__main(void)
4238451Smsmith{
4338451Smsmith}
44