7 lines
115 B
C
7 lines
115 B
C
/* $Id$ */
|
|
#include <sgtty.h>
|
|
|
|
int gtty(int fildes, struct sgttyb* argp) {
|
|
return ioctl(fildes,TIOCGETP,argp) ;
|
|
}
|