5 lines
118 B
C
5 lines
118 B
C
|
#include <sgtty.h>
|
||
|
int gtty(fildes,argp) int fildes ; struct sgttyb *argp ; {
|
||
|
return ioctl(fildes,TIOCGETP,argp) ;
|
||
|
}
|