muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / __termios.h
blob374eacd96406e01ff953d2a34a1f77030650045b
1 #ifndef ___TERMIOS_H
2 #define ___TERMIOS_H
4 /*
5 * Copyright © 1995-2013, The AROS Development Team. All rights reserved.
6 * $Id$
8 * internal header file for POSIX.1-2008 termios.h support
9 */
11 #include <termios.h>
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 */