Define TRUE & FALSE rather than depending on bogus #includes.

This commit is contained in:
Poul-Henning Kamp 1995-10-29 09:44:09 +00:00
parent 39db722b77
commit 77103ea36a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11910

View File

@ -116,6 +116,9 @@ state_func_t catatonia __P((void));
state_func_t death __P((void));
enum { AUTOBOOT, FASTBOOT } runcom_mode = AUTOBOOT;
#define FALSE 0
#define TRUE 1
int Reboot = FALSE;
void transition __P((state_t));