date and time created 91/03/07 20:27:58 by bostic
[unix-history] / usr / src / bin / sh / init.h
CommitLineData
36ed1b29
KB
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) %G%
11 */
12
13#ifdef __STDC__
14void init(void);
15void reset(void);
16void initshellproc(void);
17#else
18void init();
19void reset();
20void initshellproc();
21#endif