1 2 3 4 5 6 7 8 9 10
#include <termios.h> int tcgetattr(int fildes, struct termios *termios_p) { (void)termios_p; return fildes; } /* POSIX(1) */