FreeBSD 4.1 bootstrapping aid (HALT and PDWN are not defined there).

This commit is contained in:
Ruslan Ermilov 2002-02-08 09:37:12 +00:00
parent 2ef702f52a
commit 2619d7c271
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90394

View File

@ -44,9 +44,15 @@ static const char rcsid[] =
#include "lex.h"
/*
* PASTE isn't defined in 4.x, but we need it to bridge to 5.0-current
* so define it here as a stop gap transition measure.
* HALT, PDWN, and PASTE aren't defined in 4.x, but we need them to bridge
* to 5.0-current so define them here as a stop gap transition measure.
*/
#ifndef HALT
#define HALT 0xa1 /* halt machine */
#endif
#ifndef PDWN
#define PDWN 0xa2 /* halt machine and power down */
#endif
#ifndef PASTE
#define PASTE 0xa3 /* paste from cut-paste buffer */
#endif