clean up bcm bases and add primecell peripheral defines
[AROS.git] / compiler / clib / __arosc_termios.h
blob6c0dd560c4cf2f235577d0a31e82cd7f972282dd
1 #ifndef __AROSC_TERMIOS_H
2 #define __AROSC_TERMIOS_H
4 /*
5 * Copyright © 1995-2012, 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 /* __AROSC_TERMIOS_H */