date and time created 91/03/07 20:27:46 by bostic
[unix-history] / usr / src / bin / sh / main.h
CommitLineData
3966563d
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 * @(#)main.h 5.1 (Berkeley) %G%
11 */
12
13extern int rootpid; /* pid of main shell */
14extern int rootshell; /* true if we aren't a child of the main shell */
15
16#ifdef __STDC__
17void readcmdfile(char *);
18void cmdloop(int);
19#else
20void readcmdfile();
21void cmdloop();
22#endif