xref: /openbsd-src/lib/libc/hidden/termios.h (revision 079ead8cd97e627cbd5da92d29ddf4319a6caa40)
1*079ead8cSguenther /*	$OpenBSD: termios.h,v 1.2 2015/09/14 08:13:01 guenther Exp $	*/
2a167d8c1Sguenther /*
3a167d8c1Sguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4a167d8c1Sguenther  *
5a167d8c1Sguenther  * Permission to use, copy, modify, and distribute this software for any
6a167d8c1Sguenther  * purpose with or without fee is hereby granted, provided that the above
7a167d8c1Sguenther  * copyright notice and this permission notice appear in all copies.
8a167d8c1Sguenther  *
9a167d8c1Sguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10a167d8c1Sguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11a167d8c1Sguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12a167d8c1Sguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13a167d8c1Sguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14a167d8c1Sguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15a167d8c1Sguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16a167d8c1Sguenther  */
17a167d8c1Sguenther 
18a167d8c1Sguenther #ifndef _LIBC_TERMIOS_H_
19a167d8c1Sguenther #define _LIBC_TERMIOS_H_
20a167d8c1Sguenther 
21a167d8c1Sguenther #include_next <termios.h>
22a167d8c1Sguenther 
23a167d8c1Sguenther PROTO_DEPRECATED(cfgetispeed);
24a167d8c1Sguenther PROTO_DEPRECATED(cfgetospeed);
25a167d8c1Sguenther PROTO_DEPRECATED(cfmakeraw);
26a167d8c1Sguenther PROTO_DEPRECATED(cfsetispeed);
27a167d8c1Sguenther PROTO_DEPRECATED(cfsetospeed);
28a167d8c1Sguenther PROTO_DEPRECATED(cfsetspeed);
29*079ead8cSguenther PROTO_DEPRECATED/*PROTO_CANCEL*/(tcdrain);
30a167d8c1Sguenther PROTO_DEPRECATED(tcflow);
31a167d8c1Sguenther PROTO_DEPRECATED(tcflush);
32a167d8c1Sguenther PROTO_NORMAL(tcgetattr);
33a167d8c1Sguenther PROTO_DEPRECATED(tcgetsid);
34a167d8c1Sguenther PROTO_DEPRECATED(tcsendbreak);
35a167d8c1Sguenther PROTO_NORMAL(tcsetattr);
36a167d8c1Sguenther 
37a167d8c1Sguenther #endif /* !_LIBC_TERMIOS_H_ */
38