summaryrefslogtreecommitdiff
path: root/include/termios.h
blob: e2c35ebbae0967bcf5fc97bf26a7c2819c0f2def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _TERMIOS_H
#include <termios/termios.h>

#ifndef _ISOMAC
/* Now define the internal interfaces.  */
extern int __tcgetattr (int __fd, struct termios *__termios_p);
extern int __tcsetattr (int __fd, int __optional_actions,
			const struct termios *__termios_p);

extern int __libc_tcdrain (int __fd);

libc_hidden_proto (__tcgetattr)
libc_hidden_proto (tcsetattr)
libc_hidden_proto (cfsetispeed)
libc_hidden_proto (cfsetospeed)

#endif
#endif