xref: /original-bsd/bin/sh/init.h (revision 431be598)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)init.h	8.1 (Berkeley) 05/31/93
11  */
12 
13 #ifdef __STDC__
14 void init(void);
15 void reset(void);
16 void initshellproc(void);
17 #else
18 void init();
19 void reset();
20 void initshellproc();
21 #endif
22