__main.c revision 221358
1139804Simp/*	$NetBSD: __main.c,v 1.4 1996/03/14 18:52:03 christos Exp $	*/
2103785Sjeff
3103785Sjeff/*
4103785Sjeff * Copyright (c) 1993 Christopher G. Demetriou
5103785Sjeff * All rights reserved.
6103785Sjeff *
7103785Sjeff * Redistribution and use in source and binary forms, with or without
8103785Sjeff * modification, are permitted provided that the following conditions
9103785Sjeff * are met:
10103785Sjeff * 1. Redistributions of source code must retain the above copyright
11103785Sjeff *    notice, this list of conditions and the following disclaimer.
12103785Sjeff * 2. Redistributions in binary form must reproduce the above copyright
13103785Sjeff *    notice, this list of conditions and the following disclaimer in the
14103785Sjeff *    documentation and/or other materials provided with the distribution.
15103785Sjeff * 3. All advertising materials mentioning features or use of this software
16103785Sjeff *    must display the following acknowledgement:
17103785Sjeff *      This product includes software developed by Christopher G. Demetriou.
18103785Sjeff * 4. The name of the author may not be used to endorse or promote products
19103785Sjeff *    derived from this software without specific prior written permission
20103785Sjeff *
21103785Sjeff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22103785Sjeff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23103785Sjeff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24103785Sjeff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25103785Sjeff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26103785Sjeff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27116182Sobrien * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28116182Sobrien * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29116182Sobrien * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30121508Srwatson * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31121508Srwatson */
32103785Sjeff
33103785Sjeff#include <sys/cdefs.h>
34103785Sjeff__FBSDID("$FreeBSD: head/lib/libstand/__main.c 221358 2011-05-03 04:44:50Z rodrigc $");
35103785Sjeff
36103785Sjeff#include <sys/types.h>
37157233Sjhb
38103785Sjeffvoid __main(void);
39103785Sjeff
40103785Sjeffvoid
41103785Sjeff__main(void)
42103785Sjeff{
43103785Sjeff}
44103785Sjeff