1 #ifndef __ASM_MIPS_TERMBITS_H
2 #define __ASM_MIPS_TERMBITS_H
3
4 #include <asm/ioctl.h>
5 #include <asm/ioctls.h>
6
7
8
9
10
11 #define NCC 8
12 #define NCCS 23
13
14 struct termio {
15 unsigned short c_iflag;
16 unsigned short c_oflag;
17 unsigned short c_cflag;
18 unsigned short c_lflag;
19 char c_line;
20 unsigned char c_cc[NCCS];
21 };
22
23 struct termios {
24 tcflag_t c_iflag;
25 tcflag_t c_oflag;
26 tcflag_t c_cflag;
27 tcflag_t c_lflag;
28
29
30
31 cc_t c_line;
32 cc_t c_cc[NCCS];
33 };
34
35 #endif