home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
minnie.tuhs.org
/
unixen.tar
/
unixen
/
PDP-11
/
Trees
/
V7
/
usr
/
src
/
libc
/
gen
/
stty.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1979-01-10
|
216 b
|
18 lines
/*
* Writearound to old stty and gtty system calls
*/
#include <sgtty.h>
stty(fd, ap)
struct sgtty *ap;
{
return(ioctl(fd, TIOCSETP, ap));
}
gtty(fd, ap)
struct sgtty *ap;
{
return(ioctl(fd, TIOCGETP, ap));
}