isatty.c 162 字节
Newer Older
R
Rich Felker 已提交
1
#include <unistd.h>
2 3
#include <sys/ioctl.h>
#include "syscall.h"
R
Rich Felker 已提交
4 5 6

int isatty(int fd)
{
7 8
	struct winsize wsz;
	return !__syscall(SYS_ioctl, fd, TIOCGWINSZ, &wsz);
R
Rich Felker 已提交
9
}