Welcome to mirror list, hosted at ThFree Co, Russian Federation.

termios.h « sys « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bde51ab92e6081cedb880480910ed7b8f508a57c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* libc/sys/linux/sys/termios.h - Terminal control definitions */

/* Written 2000 by Werner Almesberger */


#ifndef _SYS_TERMIOS_H
#define _SYS_TERMIOS_H

#include <linux/termios.h>

/* grr, this shouldn't have to be here */

int tcgetattr(int fd,struct termios *termios_p);
int tcsetattr(int fd,int optional_actions,const struct termios *termios_p);

#endif