init.h revision 90111
1149781Sstefanf/*-
2149781Sstefanf * Copyright (c) 1991, 1993
3149781Sstefanf *	The Regents of the University of California.  All rights reserved.
4149781Sstefanf *
5149781Sstefanf * This code is derived from software contributed to Berkeley by
6149781Sstefanf * Kenneth Almquist.
7149781Sstefanf *
8149781Sstefanf * Redistribution and use in source and binary forms, with or without
9149781Sstefanf * modification, are permitted provided that the following conditions
10149781Sstefanf * are met:
11149781Sstefanf * 1. Redistributions of source code must retain the above copyright
12149781Sstefanf *    notice, this list of conditions and the following disclaimer.
13149781Sstefanf * 2. Redistributions in binary form must reproduce the above copyright
14149781Sstefanf *    notice, this list of conditions and the following disclaimer in the
15149781Sstefanf *    documentation and/or other materials provided with the distribution.
16149781Sstefanf * 3. All advertising materials mentioning features or use of this software
17149781Sstefanf *    must display the following acknowledgement:
18149781Sstefanf *	This product includes software developed by the University of
19149781Sstefanf *	California, Berkeley and its contributors.
20149781Sstefanf * 4. Neither the name of the University nor the names of its contributors
21149781Sstefanf *    may be used to endorse or promote products derived from this software
22149781Sstefanf *    without specific prior written permission.
23149781Sstefanf *
24149781Sstefanf * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25149781Sstefanf * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26149781Sstefanf * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27149781Sstefanf * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28149781Sstefanf * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29149781Sstefanf * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30149781Sstefanf * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31149781Sstefanf * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32149781Sstefanf * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33149781Sstefanf * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34149781Sstefanf * SUCH DAMAGE.
35149781Sstefanf *
36149781Sstefanf *	@(#)init.h	8.2 (Berkeley) 5/4/95
37149781Sstefanf * $FreeBSD: head/bin/sh/init.h 90111 2002-02-02 06:50:57Z imp $
38149781Sstefanf */
39149781Sstefanf
40149781Sstefanfvoid init(void);
41149781Sstefanfvoid reset(void);
42149781Sstefanfvoid initshellproc(void);
43