xref: /original-bsd/bin/sh/init.h (revision 7f22226e)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * 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	5.1 (Berkeley) 03/07/91
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