10 lines
96 B
C
10 lines
96 B
C
#include <sgtty.h>
|
|
|
|
gtty(fd, argp)
|
|
int fd;
|
|
char *argp;
|
|
{
|
|
return ioctl(fd, TIOCGETP, argp);
|
|
}
|
|
|