blob: afb15460e256c4df66eb7bb3f2e42da319712172 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <termios.h>
#include <unistd.h>
#include <syscall.h>
#include <asm-generic/ioctls.h>
int isatty(int fildes)
{
struct winsize winsize;
return 1 + syscall(ioctl, fildes, TIOCGWINSZ, &winsize);
}
|