1988-06-22 16:57:09 +00:00
|
|
|
/*
|
|
|
|
Provisional arrangement for determining the system on which
|
|
|
|
the program is being translated.
|
|
|
|
*/
|
|
|
|
|
1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1988-06-22 16:57:09 +00:00
|
|
|
|
1988-07-08 10:37:00 +00:00
|
|
|
#include <local.h>
|
1988-06-22 16:57:09 +00:00
|
|
|
|
|
|
|
#ifdef BSD4_1
|
|
|
|
#define BSD_X
|
1991-12-17 15:28:58 +00:00
|
|
|
#endif /* BSD4_1 */
|
1988-06-22 16:57:09 +00:00
|
|
|
|
|
|
|
#ifdef BSD4_2
|
|
|
|
#define BSD_X
|
1991-12-17 15:28:58 +00:00
|
|
|
#endif /* BSD4_2 */
|
1988-06-22 16:57:09 +00:00
|
|
|
|
1988-07-08 10:37:00 +00:00
|
|
|
#ifdef SYS_5
|
1988-06-22 16:57:09 +00:00
|
|
|
#define SYS_V
|
1991-12-17 15:28:58 +00:00
|
|
|
#endif /* SYS_5 */
|
1988-06-22 16:57:09 +00:00
|
|
|
|
2005-06-24 22:11:27 +00:00
|
|
|
/* FIXME: A lot of modern systems, including Linux, don't have struct sgtty
|
|
|
|
* and associated ioctls. If you *do* have it, uncomment this. All this
|
|
|
|
* code should probably be rewritten one day to use termios instead, which
|
|
|
|
* seems to be the standard that won. --- dtrg */
|
|
|
|
|
|
|
|
//#define WANT_SGTTY
|