5 * Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 * internal header file for POSIX.1-2008 termios.h support
13 struct termios_intern
{
14 /* Public part; needs to be backwards compatible */
15 tcflag_t c_iflag
; /* input mode flags */
16 tcflag_t c_oflag
; /* output mode flags */
17 tcflag_t c_cflag
; /* control mode flags */
18 tcflag_t c_lflag
; /* local mode flags */
19 cc_t c_cc
[NCCS
]; /* control characters */
20 /* Internal part; may be changed */
21 speed_t c_ispeed
; /* input speed */
22 speed_t c_ospeed
; /* output speed */
25 #endif /* ___TERMIOS_H */