2 Copyright © 2016, The AROS Development Team. All rights reserved.
10 /*****************************************************************************
14 #include <sys/ioctl.h>
25 Get terminal attributes.
29 t - struct termios where attributes are put
36 Currently supports only ICANON flag
47 ******************************************************************************/
49 fdesc
*fdesc
= __getfdesc(fd
);
57 if (fdesc
->fcb
->privflags
& _FCB_CONSOLERAW
)
58 t
->c_lflag
&= ~ICANON
;