1#ifndef _TERMIOS_H
2#include <termios/termios.h>
3
4#ifndef _ISOMAC
5/* Now define the internal interfaces. */
6extern int __tcgetattr (int __fd, struct termios *__termios_p);
7extern int __tcsetattr (int __fd, int __optional_actions,
8 const struct termios *__termios_p);
9
10extern int __libc_tcdrain (int __fd);
11
12libc_hidden_proto (tcsetattr)
13libc_hidden_proto (cfsetispeed)
14libc_hidden_proto (cfsetospeed)
15
16#endif
17#endif
18