xref: /original-bsd/sys/sys/ttydev.h (revision 35293e0f)
1 /*
2  * Copyright (c) 1982, 1986 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)ttydev.h	7.6 (Berkeley) 11/20/89
7  */
8 
9 /*
10  * COMPATABILITY HEADER FILE --
11  */
12 
13 /*
14  * Terminal definitions related to underlying hardware.
15  */
16 #ifndef _TTYDEV_
17 #define	_TTYDEV_
18 
19 #ifdef USE_OLD_TTY
20 /*
21  * Speeds
22  */
23 #define B0	0
24 #define B50	1
25 #define B75	2
26 #define B110	3
27 #define B134	4
28 #define B150	5
29 #define B200	6
30 #define B300	7
31 #define B600	8
32 #define B1200	9
33 #define	B1800	10
34 #define B2400	11
35 #define B4800	12
36 #define B9600	13
37 #define EXTA	14
38 #define EXTB	15
39 #endif /* USE_OLD_TTY */
40 
41 #endif /* _TTYDEV_ */
42